我正在做一个 android 应用程序,我有两个按钮应该放在底部,当键盘弹出时,它们需要移动到键盘布局上方并再次返回页面底部。如何?
问问题
146 次
2 回答
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>
于 2011-08-30T18:00:28.367 回答
0
查看AndroidManifestandroid: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
于 2011-08-30T13:40:29.497 回答