因为图片胜过千言万语:
所以我希望我的第一个LinearLayout像操作栏一样,而不是被键盘推高。我尝试了android:isScrollContainer="false"
并添加了清单"adjustPan"
或"adjustResize"
,但我没有得到我想要的内容。
这是我的XML:
<!-- layout 1 -->
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/caller_info"
android:layout_alignParentTop="true"
android:isScrollContainer="false"
android:layout_marginTop="@dimen/last_message_margin">
<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/txt_caller_name"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_marginLeft="@dimen/side_margins"
android:layout_marginStart="@dimen/side_margins"/>
</LinearLayout>
<!-- layout 2 -->
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/dialog"
android:layout_below="@+id/caller_info"
android:layout_above="@+id/write_msg_layout">
</LinearLayout>
<!-- layout 3 with edit text -->
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:id="@+id/write_msg_layout">
<EditText
android:layout_marginBottom="30dp"
android:layout_marginTop="10dp"
android:layout_marginLeft="@dimen/side_margins"
android:layout_marginStart="@dimen/side_margins"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/edit_text"
android:hint="Write Msg"
android:textColorHint="@color/grey_as_clouds"
android:background="@color/white_as_stone"
android:imeOptions="actionSend"
android:singleLine="true" />
</LinearLayout>
答案 0 :(得分:0)
终于明白了。您必须使用ScrollView环绕视图并使用adjustResize
。
并删除android:isScrollContainer="false"
。