Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.    xmlns:tools="http://schemas.android.com/tools"
  3.    android:id="@+id/LinearLayout7"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical" >
  7.  
  8.     <LinearLayout
  9.        android:layout_width="match_parent"
  10.        android:layout_height="wrap_content"
  11.        android:background="@drawable/ab_solid_silence"
  12.        android:orientation="vertical" >
  13.  
  14.         <TextView
  15.            android:id="@+id/windowTitle"
  16.            android:layout_width="fill_parent"
  17.            android:layout_height="wrap_content"
  18.            android:padding="15dp"
  19.            android:text="TextView"
  20.            android:textColor="#000000"
  21.            android:textSize="20sp" />
  22.  
  23.     </LinearLayout>
  24.  
  25.     <LinearLayout
  26.        android:id="@+id/LinearLayout1"
  27.        android:layout_width="match_parent"
  28.        android:layout_height="match_parent"
  29.        android:orientation="vertical"
  30.        android:paddingBottom="@dimen/activity_vertical_margin"
  31.        android:paddingLeft="@dimen/activity_horizontal_margin"
  32.        android:paddingRight="@dimen/activity_horizontal_margin"
  33.        android:paddingTop="@dimen/activity_vertical_margin" >
  34.  
  35.         <TextView
  36.            android:id="@+id/textView1"
  37.            android:layout_width="wrap_content"
  38.            android:layout_height="wrap_content"
  39.            android:text="@string/activity_mute_toggle_on_start" />
  40.  
  41.         <Spinner
  42.            android:id="@+id/startOptionSpinner"
  43.            android:layout_width="match_parent"
  44.            android:layout_height="wrap_content"
  45.            android:entries="@array/activity_mute_toggle_on_start_options" />
  46.  
  47.         <TextView
  48.            android:id="@+id/textView2"
  49.            android:layout_width="wrap_content"
  50.            android:layout_height="wrap_content"
  51.            android:layout_marginTop="10dp"
  52.            android:text="@string/activity_mute_toggle_on_finish" />
  53.  
  54.         <Spinner
  55.            android:id="@+id/endOptionSpinner"
  56.            android:layout_width="match_parent"
  57.            android:layout_height="wrap_content"
  58.            android:entries="@array/activity_mute_toggle_on_finish_options" />
  59.  
  60.         <LinearLayout
  61.            android:id="@+id/LinearLayout"
  62.            android:layout_width="fill_parent"
  63.            android:layout_height="wrap_content"
  64.            android:layout_gravity="center_horizontal"
  65.            android:layout_marginTop="20dp"
  66.            android:orientation="horizontal" >
  67.  
  68.             <TextView
  69.                android:id="@+id/actionSave"
  70.                android:layout_width="fill_parent"
  71.                android:layout_height="wrap_content"
  72.                android:layout_weight="1"
  73.                android:gravity="center_horizontal"
  74.                android:padding="10dp"
  75.                android:text="@string/activity_mute_toggle_action_save" />
  76.  
  77.             <View
  78.                android:layout_width="1dp"
  79.                android:layout_height="match_parent"
  80.                android:background="#dddddd" />
  81.  
  82.             <TextView
  83.                android:id="@+id/actionCancel"
  84.                android:layout_width="fill_parent"
  85.                android:layout_height="wrap_content"
  86.                android:layout_weight="1"
  87.                android:gravity="center_horizontal"
  88.                android:padding="10dp"
  89.                android:text="@string/activity_mute_toggle_action_cancel" />
  90.         </LinearLayout>
  91.     </LinearLayout>
  92.  
  93. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement