2009-11-22 19:23:34 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-03-07 21:17:22 -05:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
|
2014-08-28 20:54:08 -04:00
|
|
|
<View
|
|
|
|
android:id="@+id/divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?android:attr/dividerHorizontal" />
|
|
|
|
|
2013-03-07 21:17:22 -05:00
|
|
|
<LinearLayout
|
2014-08-28 20:54:08 -04:00
|
|
|
style="?android:attr/buttonBarStyle"
|
|
|
|
android:layout_width="match_parent"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:layout_height="wrap_content"
|
2014-08-28 20:54:08 -04:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_weight="1" />
|
2013-03-07 21:17:22 -05:00
|
|
|
|
2009-11-22 19:23:34 -05:00
|
|
|
<Button
|
|
|
|
android:id="@+id/next"
|
2014-08-28 20:54:08 -04:00
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:layout_width="0dp"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:layout_height="wrap_content"
|
2014-08-28 20:54:08 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/selectable_item_background"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:text="@string/next_action" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</merge>
|