blob: a657661650296aa375fc0528641fd09cda48518d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cust_message" />
<Button
android:id="@+id/start_dangerous_activity_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/cust_button1" />
</LinearLayout>
|