如何格式化標題,列表和EditText,以便EditText是固定的單行且始終可見? 這是我的佈局只有一個列表項 - EditText填充屏幕看起來不好的其餘部分。 EditText字段太大或被覆蓋
這裏是包含多個列表條目的佈局 - 軟鍵盤隱藏了輸入的文本。我在韋恩打字。
我嘗試了各種線性和相對佈局。這是我目前的佈局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/select_child_header"
style="@style/headerStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@color/start_blue"
android:text="Which child did you take a picture of?" />
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/modchild_fragment"
android:name="com.chex.control.ChildList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/select_child_header"
android:focusable="true"
android:focusableInTouchMode="true" >
</fragment>
<EditText
android:id="@+id/new_child"
style="@style/editTextStyle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@id/modchild_fragment"
android:hint="new child name"
android:inputType="text"
android:singleLine="true" />
</RelativeLayout>
我欣賞任何關於如何格式化此屏幕的建議。