これはレイアウトコードです
<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>
しかし、これらの「ビュー」では、ボタンを表示できません。
ボーダーランド ボタンの Google の例へのリンク。これが、私がこれらのビューを実装した理由です。
ここでは、線形レイアウト全体を埋める 3 つのボーダレス ボタンを表示したいと考えています。
|-1--|-2--|-3--| |----|----|----|
ありがとうございました