0
Q
佈局與谷歌地圖
A
回答
1
它只是把相對佈局內的地圖和按鈕,它爲我的作品
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent">
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textView_for_welcome"
android:apiKey="@string/live_key_for_map"
android:clickable="true" >
</com.google.android.gms.maps.MapView>
<LinerLayout
android:id="@+id/textView_for_welcome"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:background="@drawable/backgroud_layout"
android:gravity="center"
>
----inside put all ur Views ----
</LinerLayout>
</RelativeLayout>
也使用按鈕漸變背景(或任何佈局)U想要的,但重要的是ü必須指定下一個映射
您可以使用backgroud_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#AA474946"
android:endColor="#FFFFFFFF"
android:angle="270"/>
<corners android:radius="5dp" />
</shape>
來繪製文件夾 使用FF-FF阿爾法紅FF-FF藍,綠
相關問題
- 1. 谷歌地圖上的透明佈局
- 2. 谷歌地圖分割佈局
- 3. Android谷歌地圖:XML佈局錯誤
- 4. 谷歌地圖和協調佈局
- 5. 谷歌地圖,谷歌商店發佈
- 6. 與谷歌地圖的是Android XML佈局問題
- 7. Android谷歌地圖與導航抽屜佈局
- 8. 與谷歌地圖
- 9. 谷歌地圖發佈應用程序谷歌地圖V2谷歌播放
- 10. 設置谷歌地圖邊界與角谷歌地圖
- 11. Android谷歌地圖API與JavaScript谷歌地圖API
- 12. 谷歌地圖移動SDK商業與谷歌地圖Android API
- 13. Android谷歌地圖與谷歌地圖企業數據交談?
- 14. 谷歌地圖與Android
- 15. 谷歌地圖GeoComplete與GeoJson
- 16. 谷歌地圖與Android
- 17. 谷歌地圖與AJAX
- 18. 谷歌地圖與vb.net
- 19. 與谷歌地圖API
- 20. Angular谷歌地圖與ngMap
- 21. 谷歌地圖event.addListener與xml
- 22. 谷歌地圖與覆蓋
- 23. 谷歌地圖與PhoneGap的
- 24. 谷歌地圖與php
- 25. 谷歌地圖v2與v3
- 26. Proplem與谷歌地圖infowindow
- 27. 谷歌地圖與網站
- 28. 谷歌地圖與ReactJs
- 29. Ionic 2與谷歌地圖
- 30. 問題與谷歌地圖
我在哪裏放置按鈕佈局的漸變背景? – user4152 2014-09-24 10:50:04
android:background =「#AAFF4a4a」 – SelvaMariappan 2014-09-24 11:19:26
請檢查我最遲的答案 – SelvaMariappan 2014-09-24 11:41:40