我想要兩個按鈕「運行」和「結果」並排。但是我沒有太多的運氣。XML - 如何並排獲取兩個按鈕?
我已經嘗試使用RelativeLayout
,並且還將layout_weight
添加到兩個按鈕,但他們似乎只是消失,地圖接管屏幕。
任何人都可以指出我做錯了什麼,可以做些什麼來解決它?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/myLocationText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello" />
<TextView
android:id="@+id/resultsHomeTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="" />
<Button
android:id="@+id/btnRun"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Run" />
<Button
android:id="@+id/btnResults"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Results" />
<TextView
android:id="@+id/resultsTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textAppearance="?android:attr/textAppearanceMedium" />
<com.google.android.maps.MapView
android:id="@+id/myMapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="02kgJwy0ijcQsVCaCzD9sFv69dOi4gXBEUjIbuQ"
/>
<!--
Desktop key: 02kgJwy0ijcTK7fd-wxv7OsPUFEveXTUt16lrRA
Laptop key : 02kgJwy0ijcQsVCaCzD9sFv69dOi4gXBEUjIbuQ
-->
</LinearLayout>
@csmit機器人:方向=「橫向」是默認 – Blackbelt 2012-08-01 16:01:09
啊非常感謝你 – MurphyApps 2012-08-01 16:01:52
時fixs您的問題的答案,你應該接受它。 – Blackbelt 2012-08-01 16:02:35