0

当我进入横向视图时,一切看起来都很好。你看。“许可证类型”,然后是一个要输入的框。但是,当人们在框中输入内容时,视图会发生一些变化,并且您看不到“许可证类型”只是一个按钮,单击该按钮后会转到下一个框,没有描述 这意味着这个人不知道他们在做什么。

<?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>

视图处于布局模式,因为我发现这是获取照片并对其进行操作然后显示它而不是丢失它的最佳方式。我肯定错过了什么。如果有人能指出我正确的方向。

4

2 回答 2

1

Dr. Dredel 很聪明。但是,仅此方法并不能解决我的问题,因为在注释中我看到了 3/4 的屏幕可见。他的回答确实给了我通往分析器的道路。

android:imeOptions="actionDone"

在每个 EditText 字段中。

正如他所说,这也是一个重复的问题,但我会留下它,因为我的回答可能对其他人有所帮助。

于 2013-02-19T02:25:20.173 回答
1

您需要指定您不希望键盘在横向时占据整个屏幕。

在这里查看我的答案,它也对你有用(这在技术上是同一问题的重复)

如何在横向模式下只打开半键盘?

于 2013-02-19T01:17:50.287 回答