这是布局代码
<LinearLayout
android:id="@+id/mapOptions"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:background="@color/white" >
<View
android:id="@+id/mapOptionMenuShade"
android:layout_width="match_parent"
android:layout_height="1dip"
android:layout_marginLeft="4dip"
android:layout_marginRight="4dip"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/BtnMap"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="?android:attr/selectableItemBackground"
android:text="@string/map" />
<View
android:id="@+id/Shade2"
android:layout_width="1dip"
android:layout_height="wrap_content"
android:layout_marginBottom="4dip"
android:layout_marginTop="4dip"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/BtnSatellite"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="?android:attr/selectableItemBackground"
android:text="@string/satellite" />
<View
android:id="@+id/Shade3"
android:layout_width="1dip"
android:layout_height="wrap_content"
android:layout_marginBottom="4dip"
android:layout_marginTop="4dip"
android:background="?android:attr/dividerVertical" />
<Button
android:id="@+id/BtnHybrid"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="?android:attr/selectableItemBackground"
android:text="@string/hybrid" />
</LinearLayout>
但是对于那些“视图”,我无法显示我的按钮。
谷歌的边境按钮示例的链接。这就是我暗示这些观点的原因。
在这里,我想展示 3 个填充整个线性布局的无边框按钮。
|-1--|-2--|-3--| |----|----|----|
谢谢