0
A
回答
0
首先,在添加manifest.xml中向android:windowSoftInputMode="adjustResize"
您的活動。
然後創建如下的佈局。
- 父,使用
RelativeLayout
- 把裏面的2名兒童(滾動型和底視圖)
- 底視圖
aligned to bottom
。 - ScrollView位於
above
從底部視圖。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_above="@+id/bottomView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//scrollable content
</ScrollView>
<RelativeLayout
android:id="@+id/bottomView"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
//your bottom content
</RelativeLayout >
</RelativeLayout>
相關問題
- 1. Android windowSoftInputMode問題
- 2. windowSoftInputMode問題
- 3. Android windowSoftInputMode不工作
- 4. 如何修復WindowSoftInputMode和WindowManagerFlags.TranslucentStatus的不兼容問題?
- 5. windowSoftInputMode =「adjustResize」導致自定義鍵盤佈局出現問題
- 6. WindowSoftInputMode和滾動型
- 7. 鍵盤windowSoftInputMode片段
- 8. windowSoftInputMode不起作用
- 9. 片段2窗格windowSoftInputMode爲
- 10. Android NDK問題pthread_mutex_unlock問題
- 11. android標題問題
- 12. Android的Android問題
- 13. Android - 在TabActivity中託管的ScrollView活動和windowSoftInputMode
- 14. 適用於android的Java方法:windowSoftInputMode屬性
- 15. Android 2.1:windowSoftInputMode =「adjustResize」與ListView無法正常工作
- 16. windowSoftInputMode設置爲stateHidden | adjustResize不是在Android的
- 17. Android的滾動視圖無法正常工作windowSoftInputMode
- 18. 如何在設置android時滾動我的佈局:windowSoftInputMode =「adjustPan」?
- 19. Android ListView問題
- 20. Android SoundManager問題
- 21. Android:類問題
- 22. LayoutInflater問題Android
- 23. Android ImageView問題
- 24. Android ViewPager問題
- 25. Android 2.3.6問題
- 26. Android HttpClient問題
- 27. Android Soundpool問題
- 28. Android tabactivity問題
- 29. Android - UI問題
- 30. Admob問題 - Android
謝謝!它的工作 –