Skip to content

Instantly share code, notes, and snippets.

@tatuas
Last active December 20, 2015 03:19
Show Gist options
  • Save tatuas/6063106 to your computer and use it in GitHub Desktop.
Save tatuas/6063106 to your computer and use it in GitHub Desktop.
AndroidのボタンバーXMLその1。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="?android:attr/dividerHorizontal"
android:orientation="vertical"
android:showDividers="middle" >
<View
android:layout_width="fill_parent"
android:layout_height="1dip" />
<LinearLayout
style="?android:attr/buttonBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/cancel_btn"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@android:string/cancel" />
<Button
android:id="@+id/ok_btn"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@android:string/ok" />
</LinearLayout>
</LinearLayout>
@tatuas
Copy link
Author

tatuas commented Jul 23, 2013

Holoテーマでもそうでなくても適応されるパターン。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment