0
A
回答
0
是的,這是可能的。
假設您有一個垂直LinearLayout
作爲您的主佈局。你會有這樣的事情:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!-- put your top widgets/progress bars here
their height needs to be fixed or wrap_content -->
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<android.support.v4.view.PagerTabStrip
android:id="@+id/pagertabstrip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top" />
</android.support.v4.view.ViewPager>
</LinearLayout>
相關問題
- 1. 如何在標籤佈局中顯示我的所有組件?
- 2. 如何更改標籤佈局中一個標籤的大小?
- 3. 在佈局中顯示自定義小部件
- 4. PyQt在2個佈局中顯示1個小部件?
- 5. 如何在Qt佈局中設置小部件之間的顯示比例?
- 6. 如何在佈局中顯示畫布?
- 7. GXT,如何使用VBOXLayout顯示小部件標籤
- 8. 標籤佈局不會顯示標籤圖標
- 9. RecyclerView中佈局的小部件顯示不正確
- 10. 如何在Python Tkinter GUI的「標籤」小部件中顯示更新的值?
- 11. Python:如何在標籤窗口小部件(tkinter)中動態顯示圖像
- 12. 在標籤佈局
- 13. 在標籤佈局中顯示網站ionic2 + typescript
- 14. 如何在xml佈局中顯示TextView
- 15. 隱藏和顯示android佈局 - 如何標記活動佈局?
- 16. 如何在圖像未顯示的頂部顯示的標籤上設置自動佈局?
- 17. 我如何保持標籤和文本輸入小部件大小在KIVY中的盒子佈局內相同
- 18. dojo小部件佈局
- 19. wordpress小部件佈局
- 20. Android:小部件和佈局
- 21. 如何在標籤視圖佈局
- 22. 如何在屏幕底部顯示內部佈局
- 23. 如何在Android上的標籤小部件上方顯示按鈕?
- 24. 如何排序ListFragment並在android中的標籤佈局的相同標籤中顯示accednding和降序?
- 25. 如何在列布局和標籤佈局之間移動?
- 26. 如何啓用在ZF2中顯示全局標籤unsof FormMultiCheckbox?
- 27. 如何在一個線性佈局中移動小部件
- 28. 如何在佈局中應用地圖小部件?
- 29. 如何在Qt中禁用屬於佈局的小部件?
- 30. 如何在佈局XML文件中設置標籤高度?