我想知道是否有to decrease the size of menu items displayed
来自 xml 或通过编码的方式......?
另一个问题是我可以在屏幕底部绘制 tabwidget。我的意思是我希望他们在底部我可以这样做...?
另一个问题是two column list view
android中有没有。现在我知道有一个list view with two item
,但他们互相关注。一个在另一个下方,但有没有listview
像表格一样的列...?
我想知道是否有to decrease the size of menu items displayed
来自 xml 或通过编码的方式......?
另一个问题是我可以在屏幕底部绘制 tabwidget。我的意思是我希望他们在底部我可以这样做...?
另一个问题是two column list view
android中有没有。现在我知道有一个list view with two item
,但他们互相关注。一个在另一个下方,但有没有listview
像表格一样的列...?
要回答你的第三个问题,你可以在这里找到很好的教程:
http://www.technotalkative.com/android-multi-column-listview/
要回答您的第二个问题,您可以执行以下操作:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</TabHost>