21 lines
684 B
XML
21 lines
684 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="right"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
android:id="@+id/apply_change"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="20dp"
|
|
android:enabled="false"
|
|
android:text="@string/apply_change_button_title"
|
|
android:textAllCaps="false"
|
|
style="@style/ActionPrimaryButton" />
|
|
|
|
</LinearLayout>
|