aboutsummaryrefslogtreecommitdiff
path: root/system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml
diff options
context:
space:
mode:
Diffstat (limited to 'system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml')
-rw-r--r--system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml32
1 files changed, 16 insertions, 16 deletions
diff --git a/system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml b/system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml
index f9bfd5fc..9adc8692 100644
--- a/system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml
+++ b/system/RuntimePermissions/Application/src/main/res/layout/fragment_main.xml
@@ -18,31 +18,31 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:paddingBottom="@dimen/vertical_page_margin"
android:paddingLeft="@dimen/horizontal_page_margin"
android:paddingRight="@dimen/horizontal_page_margin"
android:paddingTop="@dimen/vertical_page_margin"
- android:paddingBottom="@dimen/vertical_page_margin"
- android:orientation="vertical"
- tools:context=".MainActivityFragment">
+ tools:context=".RuntimePermissionsFragment">
<TextView
- android:text="@string/main_introduction"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/main_introduction" />
<Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/show_camera"
- android:id="@+id/button_camera"
- android:onClick="showCamera"/>
+ android:id="@+id/button_camera"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:onClick="showCamera"
+ android:text="@string/show_camera" />
<Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/show_contacts"
- android:id="@+id/button_contacts"
- android:onClick="showContacts"/>
+ android:id="@+id/button_contacts"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:onClick="showContacts"
+ android:text="@string/show_contacts" />
</LinearLayout>