在一个片段中,我使用了这种布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/header_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >
<LinearLayout
android:id="@+id/layoutButtonAdd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="vertical" >
<ImageView style="@style/line" />
<Button
android:id="@+id/buttonAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="@string/addSrButton"
android:visibility="gone" />
</LinearLayout>
<LinearLayout
android:id="@+id/layoutList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/layoutButtonAdd"
android:layout_alignParentTop="true"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/progressContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:visibility="gone" >
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="4dip"
android:singleLine="true"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
<LinearLayout
android:id="@+id/listContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="1dip"
android:paddingLeft="9dip"
android:paddingRight="4dip"
android:paddingTop="1dip" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="beforeDescendants"
android:drawSelectorOnTop="false"
android:visibility="gone" />
<TextView
android:id="@+id/internalEmpty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
</LinearLayout>
向android:id="@android:id/list"
i 动态添加所需的视图(例如,编辑文本)。
问题是如果我第一次单击 EditText,它会获得焦点并且窗口会正确调整平移。但是,如果我单击已经具有焦点的 editText,则会出现键盘,但它会与所需的 EditText 字段重叠(即调整平移无法正常工作)。在我的清单文件android:windowSoftInputMode="adjustPan"
中设置。
android:minSdkVersion="7"
我读过用 包装布局的技巧ScrollView
,但我已经有了垂直滚动的元素(LinearLayout)。
有任何想法吗?