当我进入横向视图时,一切看起来都很好。你看。“许可证类型”,然后是一个要输入的框。但是,当人们在框中输入内容时,视图会发生一些变化,并且您看不到“许可证类型”只是一个按钮,单击该按钮后会转到下一个框,没有描述 这意味着这个人不知道他们在做什么。
<?xml version="1.0" encoding="utf-8"?>
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/SaveBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="SaveBtn_Click"
android:text="@string/SaveStr" />
<Button
android:id="@+id/BackBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/BackStr" />
</TableRow>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TableRow
android:id="@+id/tableRow2"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/LicenceTypeStr"
android:textAppearance="?android:attr/textAppearanceSmall" />
<EditText
android:id="@+id/TypeEt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:gravity="left"
android:hint="@string/LicenceTypeHintStr"
android:singleLine="true" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/LicenceNumberStr"
android:textAppearance="?android:attr/textAppearanceSmall" />
<EditText
android:id="@+id/NumberEt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:hint="@string/LicenceNumberHintStr"
android:singleLine="true" >
<requestFocus />
</EditText>
</TableRow>
// .. more rowws
<EditText
android:id="@+id/ExpiryDateEt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="date" />
<Button
android:id="@+id/FrontImgBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/FrontImgStr" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="300dip"
android:layout_height="200dip"
/>
<Button
android:id="@+id/BackImgBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/BackImageStr" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="300dip"
android:layout_height="200dip"
/>
</TableLayout>
视图处于布局模式,因为我发现这是获取照片并对其进行操作然后显示它而不是丢失它的最佳方式。我肯定错过了什么。如果有人能指出我正确的方向。