我想知道安卓有沒有像java中的div一樣的東西
我在畫頁面,用的表格布局,有一列要放兩個按鈕,可是不知道怎麼弄,
因為是新手,也不太懂,我畫出來的樣子:
可是我需要的是這個樣子:
只要把那兩個按鈕放一起就可以了。
那一行我的代碼:
android:id="@+id/send_notice_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#CDCDCD"
android:stretchColumns="1" >
<TextView
android:id="@+id/notice_type"
android:gravity="right"
android:padding="5dip"
android:text="通知類型:" />
<Button
android:id="@+id/meeting_notice"
android:layout_height="match_parent"
android:background="@drawable/boder"
android:text="會議通知"
android:textSize="15dip" />
<Button
android:id="@+id/leave_notice"
android:layout_height="match_parent"
android:background="@drawable/boder"
android:text="放假通知"
android:textSize="15dip" />
</TableRow>
</TableLayout>
現在只是要畫出頁面。
使用一個LinearLayout包著兩個按鈕,方向為水平方向,同時固定LinearLayout的亮度
將兩個按鈕按比例排列,比例1:1