securesmartcam / app / src / main / res / layout-land / mainmenu.xml @ 41590feb
History | View | Annotate | Download (2.37 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 |
|
| 4 |
android:id="@+id/FrameLayout" |
| 5 |
android:layout_width="fill_parent" |
| 6 |
android:layout_height="fill_parent"> |
| 7 |
|
| 8 |
|
| 9 |
<org.witness.obscuracam.ui.AnimatedBlockView
|
| 10 |
android:layout_width="fill_parent" |
| 11 |
android:layout_height="fill_parent"></org.witness.obscuracam.ui.AnimatedBlockView> |
| 12 |
|
| 13 |
<LinearLayout
|
| 14 |
|
| 15 |
android:gravity="center_vertical|center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" |
| 16 |
android:layout_height="fill_parent"> |
| 17 |
|
| 18 |
<LinearLayout
|
| 19 |
android:orientation="horizontal" |
| 20 |
android:gravity="center_vertical|center_horizontal" |
| 21 |
android:layout_width="fill_parent" |
| 22 |
android:layout_height="wrap_content" |
| 23 |
android:layout_gravity="top" android:layout_marginTop="5dp" |
| 24 |
android:background="#cc333333" |
| 25 |
|
| 26 |
>
|
| 27 |
<ImageView android:id="@+id/imageView1" android:layout_gravity="center_vertical|center_horizontal" android:src="@drawable/ic_ssc" android:layout_width="120dp" android:layout_height="120dp"></ImageView> |
| 28 |
|
| 29 |
<TextView
|
| 30 |
android:id="@+id/SplashTextView" |
| 31 |
android:layout_width="274dp" |
| 32 |
android:layout_height="50dp" |
| 33 |
android:layout_gravity="center_vertical" |
| 34 |
android:gravity="center_vertical|center_horizontal" |
| 35 |
android:text="@string/SplashTextViewString" |
| 36 |
android:textColor="#ffffff" |
| 37 |
|
| 38 |
android:textSize="40dp" > |
| 39 |
</TextView>
|
| 40 |
</LinearLayout>
|
| 41 |
<LinearLayout
|
| 42 |
android:orientation="horizontal" |
| 43 |
android:gravity="center_horizontal" |
| 44 |
android:layout_width="fill_parent" |
| 45 |
android:layout_height="wrap_content" |
| 46 |
android:layout_gravity="bottom" |
| 47 |
android:background="#cc333333" |
| 48 |
>
|
| 49 |
|
| 50 |
<Button android:id="@+id/TakePictureButton" |
| 51 |
android:text="New Picture" |
| 52 |
android:layout_width="150dp" |
| 53 |
android:layout_height="90dp" |
| 54 |
android:drawableTop="@drawable/ic_camera"> |
| 55 |
</Button>
|
| 56 |
<Button android:id="@+id/ChoosePictureButton" |
| 57 |
android:text="Obscure Photo" |
| 58 |
android:layout_width="150dp" |
| 59 |
android:layout_height="90dp" |
| 60 |
android:drawableTop="@drawable/ic_gallery"> |
| 61 |
</Button>
|
| 62 |
<Button android:id="@+id/ChooseVideoButton" |
| 63 |
android:text="Obscure Video" |
| 64 |
android:layout_width="150dp" |
| 65 |
android:layout_height="90dp" |
| 66 |
android:drawableTop="@drawable/ic_video" > |
| 67 |
</Button>
|
| 68 |
</LinearLayout>
|
| 69 |
</LinearLayout>
|
| 70 |
</FrameLayout>
|