1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/commondialog_background"
- android:layout_width="fill_parent"
- android:layout_height="@dimen/dimen_414"
- android:layout_gravity="bottom"
- android:background="#fafafa"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="@dimen/dimen_48"
- android:layout_marginRight="@dimen/dimen_48"
- android:gravity="center"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/message"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:paddingBottom="@dimen/dimen_69"
- android:paddingTop="@dimen/dimen_69"
- android:text="@string/app_no"
- android:textColor="#343434"
- android:textSize="@dimen/dimen_48" >
- </TextView>
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="bottom"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/button_cancel"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dimen_186"
- android:layout_weight="1"
- android:background="@null"
- android:gravity="center"
- android:text="@string/cancel"
- android:textColor="#343434"
- android:textSize="@dimen/dimen_48" />
- <Button
- android:id="@+id/button_sure"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dimen_186"
- android:layout_weight="1"
- android:background="@null"
- android:gravity="center"
- android:text="@string/download"
- android:textColor="#343434"
- android:textSize="@dimen/dimen_48" />
- </LinearLayout>
- </LinearLayout>
|