securesmartcam / app / src / main / res / layout / mainmenu.xml @ 41590feb
History | View | Annotate | Download (2.11 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 |
android:id="@+id/FrameLayout" |
| 4 |
android:layout_width="match_parent" |
| 5 |
android:layout_height="match_parent" |
| 6 |
android:paddingTop="0sp" > |
| 7 |
|
| 8 |
<org.witness.obscuracam.ui.AnimatedBlockView
|
| 9 |
android:layout_width="fill_parent" |
| 10 |
android:layout_height="fill_parent"></org.witness.obscuracam.ui.AnimatedBlockView> |
| 11 |
|
| 12 |
|
| 13 |
<LinearLayout android:gravity="center_vertical|center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> |
| 14 |
<ImageView android:src="@drawable/ic_ssc" |
| 15 |
android:layout_width="fill_parent" |
| 16 |
android:layout_height="150dp" |
| 17 |
android:gravity="center_vertical|center_horizontal"/> |
| 18 |
|
| 19 |
<TextView android:text="@string/SplashTextViewString" |
| 20 |
android:id="@+id/SplashTextView" android:layout_width="fill_parent" |
| 21 |
android:layout_gravity="center_vertical|center_horizontal" |
| 22 |
android:gravity="center_vertical|center_horizontal" android:textColor="#FFFFff" |
| 23 |
android:layout_height="wrap_content" android:textSize="40dp"/> |
| 24 |
|
| 25 |
<LinearLayout android:orientation="vertical" |
| 26 |
android:layout_width="fill_parent" |
| 27 |
android:layout_height="wrap_content" android:gravity="center_vertical|center_horizontal" |
| 28 |
android:background="#cc333333" |
| 29 |
android:padding="10sp" |
| 30 |
>
|
| 31 |
<Button android:id="@+id/TakePictureButton" |
| 32 |
android:text="New Picture" |
| 33 |
android:layout_width="fill_parent" |
| 34 |
android:layout_height="wrap_content" |
| 35 |
android:drawableLeft="@drawable/ic_camera"> |
| 36 |
</Button>
|
| 37 |
|
| 38 |
<Button
|
| 39 |
android:id="@+id/ChoosePictureButton" |
| 40 |
android:layout_width="fill_parent" |
| 41 |
android:layout_height="wrap_content" |
| 42 |
android:drawableLeft="@drawable/ic_gallery" |
| 43 |
android:text="Obscure Photo" > |
| 44 |
|
| 45 |
</Button>
|
| 46 |
<Button android:id="@+id/ChooseVideoButton" |
| 47 |
android:text="Obscure Video" |
| 48 |
android:layout_width="fill_parent" |
| 49 |
android:layout_height="wrap_content" |
| 50 |
android:drawableLeft="@drawable/ic_video"> |
| 51 |
</Button>
|
| 52 |
</LinearLayout>
|
| 53 |
</LinearLayout>
|
| 54 |
</FrameLayout>
|