我想要的是每个人都相反,我希望在我的活动底部有一些文本视图。使用此代码,它看起来像okei:
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_alignParentBottom="true"
android:layout_alignRight="@+id/chkMinusvalia"
android:text="Desliza hacia la derecha para ver la lista de bancos >>"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFA500"
android:textStyle="italic" />
问题是,当键盘出现时,textView对齐键盘的顶部(新的父底部)覆盖视图的其他元素...我希望我的textView保持隐藏在键盘下
我想这很简单,但我无法得到答案......
答案 0 :(得分:0)
在您的活动的manifest文件中,将android:windowSoftInputMode设置为adjustPan
<activity
android:name="zzz"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>