Android EditText布局,如Gmail Compose Screen

时间:2011-05-23 03:48:55

标签: android layout android-edittext

我正在尝试实施以下内容:

请查看此处的图片:

enter image description here

问题是每当用户点击撰写邮件编辑文本字段时,软键盘都会隐藏发送/保存/丢弃按钮。

关于如何使这些按钮始终可见的任何想法? 感谢。

[编辑] 终于解决了!必须使用Linearlayout而不是RelativeLayout并分配正确的layout_weight参数才能解决问题。非常感谢Femi指出按钮需要在ScrollView之外。

以下是最终的工作布局xml,以防有人发现它有用:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"><ScrollView android:layout_alignParentTop="true" 
    android:layout_weight="1"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
    <RelativeLayout 
        android:id="@+id/InnerRelativeLayout"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" >
        <EditText 
            android:id="@+id/editTextCompose" 
            android:layout_width="fill_parent"
            android:layout_height="200dp"
            android:gravity="top"
            android:singleLine="false" android:lines="5"
            android:inputType="text"
            android:layout_below="@+id/editTextSubject"
            >
        </EditText>
    </RelativeLayout>
</ScrollView><TableLayout android:id="@+id/recipeButtons" 
    android:background="#B0B0B0" android:padding="3dip" 
    android:stretchColumns="0,1" android:layout_alignParentBottom="true" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"> 
    <TableRow android:gravity="center"> 
        <Button android:id="@+id/editOtherAdditionButton" 
            android:text="Save" /> 
        <Button android:id="@+id/removeOtherAdditionButton" 
            android:text="Delete" /> 
    </TableRow> 
</TableLayout></LinearLayout>

2 个答案:

答案 0 :(得分:0)

正如@ mayra对Android soft keyboard covers edittext field的回答所述,您应该看到http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft有关要控制的详细信息。

我认为应该将AndroidManifest中的Activity条目修改为adjustResize

答案 1 :(得分:0)

关于此here还有另一个问题,但看起来最好的方法是使用windowSoftInputMode