You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<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:layout_margin="10dp"
|
|
tools:context=".MainActivity"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/tvHasCamera"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="#FF0000"
|
|
android:textColor="#FFF"
|
|
android:textSize="18dp"
|
|
android:layout_marginBottom="5dp"
|
|
android:text="Has Camera? " />
|
|
|
|
<TextView
|
|
android:id="@+id/tvHasCameraApp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="#FF0000"
|
|
android:textColor="#FFF"
|
|
android:textSize="18dp"
|
|
android:text="Has Camera App?" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ivThumbnailPhoto"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
<Button
|
|
android:id="@+id/btnTakePic"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:text="Take a Picture" />
|
|
|
|
</LinearLayout> |