現在它垂直分割......我希望它水平分割。我看其他人,說他們的削減水平和我不能告訴區別...如何在屏幕上水平分割屏幕
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="top"
android:layout_weight="1" >
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="bottom"
android:layout_weight="1" >
</LinearLayout>
</LinearLayout>
爲什麼改變方向垂直做到這一點...? – cj1098
您想將畫面分成一個線性向下,因此可以將方向設置爲垂直 –