32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/LinearLayout1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="@dimen/vertical_margin"
|
|
android:paddingLeft="@dimen/horizontal_margin"
|
|
android:paddingRight="@dimen/horizontal_margin"
|
|
android:paddingTop="@dimen/vertical_margin"
|
|
tools:context="com.serenegiant.usb.CameraDialog" >
|
|
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/camera" />
|
|
|
|
<Spinner
|
|
android:id="@+id/spinner1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<TextView
|
|
android:id="@id/android:empty"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="36dp"
|
|
android:text="@string/no_device" />
|
|
|
|
</LinearLayout> |