我正在做一个Android应用程序,我有两个按钮应该放在底部,当键盘弹出时,他们需要移动到键盘布局之上,然后再回到页面底部。怎么样?
答案 0 :(得分:0)
查看AndroidManifest中android:windowSoftInputMode
元素的activity
属性。在我的应用程序中,我使用此代码:
<activity android:name="MyActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustResize"
android:configChanges="orientation|keyboardHidden"
android:launchMode="singleInstance"
android:screenOrientation="portrait">
请注意android:windowSoftInputMode="adjustResize"
行。在此处阅读更多内容:http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft
答案 1 :(得分:0)
如果您始终想要在屏幕顶部显示,那么您可能需要考虑使用RelativeLayout。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
app:backgroundColor="#000000"
app:primaryTextColor="#FFFFFF"
app:secondaryTextColor="#CCCCCC"
android:layout_alignParentTop="true"
/>
<!-- TextView below that -->
<TextView
android:id="@+id/widget28"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Input Amount:"
android:layout_marginLeft="10dip"
android:layout_marginTop="10dip"
android:layout_marginRight="10dip"
android:layout_below="@id/ad"
android:textSize="16dip"
android:textStyle="bold">
</TextView>
</RelativeLayout>