例如:http://cdn3.staztic.com/screenshots/cfo-magazine-mobile-1-2.jpg如何在Android中製作這樣的頂層菜單/子菜單系統?
我剛開始學習如何編程android應用程序,我不知道該怎麼做。他們是否在主菜單和它下面的子菜單中使用了選項卡布局?如果你能指引我正確的方向,它將不勝感激。
例如:http://cdn3.staztic.com/screenshots/cfo-magazine-mobile-1-2.jpg如何在Android中製作這樣的頂層菜單/子菜單系統?
我剛開始學習如何編程android應用程序,我不知道該怎麼做。他們是否在主菜單和它下面的子菜單中使用了選項卡布局?如果你能指引我正確的方向,它將不勝感激。
我想創建一個LinearLayout
作爲標籤內容的看法是這樣的......
<LinearLayout>
<!-- Usual width/height attributes and set the orientation as vertical -->
<LinearLayout>
<!-- Usual width/height attributes and set the orientation as horizontal -->
<!-- Place the 'Latest News' and other buttons here -->
</LinearLayout>
<ListView>
<!-- Usual width/height attributes -->
</ListView>
</LinearLayout>
使用標籤和ListView在一起.. – om252345