我有以下佈局:Android的軟鍵盤覆蓋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="fill_parent">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical"
android:layout_above="@+id/edittext">
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="line1"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="line2"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="line3"/>
</LinearLayout>
<EditText
android:id="@id/edittext"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_margin="5dp"
android:text="test"
android:layout_alignParentBottom="true"
android:imeOptions="flagNoExtractUi"
/>
</RelativeLayout>
,並在Nexus的一道風景線,它看起來像:
有沒有辦法解決這個問題,但保持國旗flagNoExtractUi?
一些可能的答案是在給定鏈路上給出: http://stackoverflow.com/questions/3295672/android-soft-keyboard-covers-edittext-field – 2012-08-06 09:51:13
請檢查我的【答案】(HTTP:// stackoverflow.com/a/11822354/996493)。 – Lucifer 2012-08-06 09:51:44
你試過androidife:windowSoftInputMode =「stateVisible | adjustResize」在menifest文件中的activity標籤中http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft – rajpara 2012-08-06 09:53:52