我在Android中进行消息传递屏幕。布局是LinearLayout。
但键盘可见时。
底部布局的比例混乱。我如何强迫它保留其比例?这是我的布局文件。我尝试使用adjustPan,editText是可见的但是动作栏已经消失了。我想使用adjustResize因为我也想要动作栏但是editText不再可见了。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:flatui="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/background_grey"
android:layout_weight="93" >
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textAppearance="@android:style/TextAppearance.Large"
android:text="No chat history." />
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="7">
<com.cengalabs.flatui.views.FlatEditText
android:id="@+id/message"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:gravity="top"
android:hint="Message"
android:layout_marginRight="5dp"
flatui:theme="Deep"
flatui:fieldStyle="transparentBox"
flatui:cornerRadius="3dip"/>
<com.cengalabs.flatui.views.FlatButton
android:id="@+id/sign_in_button"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="Send"
android:layout_weight="1"
flatui:theme="Deep"
flatui:textAppearance="none"/>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:2)
尝试使用此布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:flatui="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_grey"
android:layout_above="@+id/bottomToolbox">
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textAppearance="@android:style/TextAppearance.Large"
android:text="No chat history." />
</LinearLayout>
<LinearLayout
android:id="@+id/bottomToolbox"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_margin="5dp">
<com.cengalabs.flatui.views.FlatEditText
android:id="@+id/message"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="4"
android:gravity="top"
android:hint="Message"
android:layout_marginRight="5dp"
flatui:theme="Deep"
flatui:fieldStyle="transparentBox"
flatui:cornerRadius="3dip"/>
<com.cengalabs.flatui.views.FlatButton
android:id="@+id/sign_in_button"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="Send"
android:layout_weight="1"
flatui:theme="Deep"
flatui:textAppearance="none"/>
</LinearLayout>
</RelativeLayout>