在一个片段中,我使用此布局
<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"
我动态添加所需的视图(例如编辑文本)。
问题是如果我第一次点击EditText,它需要焦点和窗口正确调整平移。但是,如果我点击已经有焦点的editText,键盘会出现,但它会重叠所需的EditText字段(即调整平移无法正常工作)。
在我的清单文件中android:windowSoftInputMode="adjustPan"
已设置。
android:minSdkVersion="7"
我读过关于使用ScrollView
包装布局的技巧,但我已经有了带垂直滚动的元素(LinearLayout)。
有什么想法吗?
答案 0 :(得分:2)
尝试使用android:windowSoftInputMode =“adjustResize”