我正在做一個Android應用程序,我應該在底部放置兩個按鈕,當彈出鍵盤時,他們需要移動到鍵盤佈局的上方,再次返回到底部頁。怎麼樣?如何在頁面佈局中移動頁腳
0
A
回答
0
查看AndroidManifest中activity
元素的android:windowSoftInputMode
屬性。在我的應用程序中,我使用此代碼:
<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
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>
相關問題
- 1. 如何在佈局中設置頁面頁腳
- 2. 網頁佈局在頁面之間稍微移動 - 如何阻止它
- 3. 如何調整jquery移動多頁面佈局中的移動分辨率?
- 4. 活動的頁面佈局
- 5. 頁面佈局
- 6. 頁眉和頁腳佈局
- 7. 如何隱藏特定頁面上的頁腳佈局?
- 8. 針對移動頁面的獨立移動視圖和佈局
- 9. 時間頁面加載和在佈局頁腳中顯示
- 10. 在主佈局或mvc 5頁中渲染頁面腳本?
- 11. CSS 3欄頁腳佈局(列偏移)
- 12. 佈局。尾頁腳
- 13. 如何在活動佈局中添加自定義頁腳佈局
- 14. 如何在HTML頁面佈局
- 15. 遇到粘腳頁面佈局問題
- 16. aspx頁面佈局
- 17. 像頁面佈局
- 18. RDLC頁面佈局
- 19. @ Html.Action在佈局頁面
- 20. 如何在ASP中完成非滾動填充頁面佈局?
- 21. 中心和佈局頁面沒有包裝並且有頁腳
- 22. 如何將頁腳添加到佈局?
- 23. 如何將頁腳和欄移動到頁面底部
- 24. 頁面佈局模式PHP頁面
- 25. 在android佈局中固定頁腳
- 26. 在Android的所有佈局中添加保持頁眉和頁腳常見的子頁面佈局
- 27. 如何在頁腳佈局Zend中插入iframe而不刷新此頁腳?
- 28. 如何使用自動佈局刷新動態TableView頁腳(不是頁腳頁腳)
- 29. 如何使瀏覽器在單頁面佈局上前後移動?
- 30. CSS頁腳佈局問題