0

嗨,我正在设置一个 android 应用程序,并且正在使用选项卡式界面。我想要三个选项卡,一个基于文本的选项卡(关于),一个 webkit 选项卡(商店)和一个网格视图选项卡的图像(画廊),就像Gridview 教程中一样。

我的文本和 webkit 选项卡工作正常,但我无法找出在选项卡中格式化 gridview 的最佳方法。以选项卡式界面 tutrial为例,我在主类的 onCreate() 事件中声明选项卡的内容。

public class Woodroid extends TabActivity  {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Resources res = getResources(); // Resource object to get Drawables
        TabHost tabHost = getTabHost();  // The activity TabHost
        tabHost.setCurrentTab(0);

        TabHost.TabSpec spec;  // Resusable TabSpec for each tab
        Intent intent;  // Reusable Intent for each tab

        // Create an Intent to launch an Activity for the tab (to be reused)
        intent = new Intent().setClass(this, AboutActivity.class);

        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("about").setIndicator("",
                          res.getDrawable(R.drawable.ic_tab_about))
                      .setContent(intent);
        tabHost.addTab(spec);

        // Do the same for the other tabs
        intent = new Intent().setClass(this, StoreActivity.class);
        spec = tabHost.newTabSpec("store").setIndicator("Store",
                res.getDrawable(R.drawable.ic_tab_store))
            .setContent(intent);
        tabHost.addTab(spec);


        intent = new Intent().setClass(this, GalleryActivity.class);
        spec = tabHost.newTabSpec("gallery").setIndicator("Gallery",
                          res.getDrawable(R.drawable.ic_tab_gallery))
                      .setContent(intent);
        tabHost.addTab(spec);


        tabHost.setCurrentTab(0);
    }
}

那么在 GalleryActivity.java 我有以下

public class GalleryActivity extends Activity {
  public void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);

            GridView gridview = new GridView(this);
            gridview.setAdapter(new ImageAdapter(this));

            setContentView(gridview);
     }
}

这是gridview教程的解释。那么缺少的是gridview布局定义。似乎我可以强制一些属性, gridview.setNumColumns(3); 但不允许从 gridview 版本的 /layout/main.xml 获得更灵活的外观

android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:columnWidth="90dp"
android:numColumns="auto_fit"
4

1 回答 1

0

确保使用 FrameLayout,cf选项卡式示例,设置 android:layout_width="WRAP_CONTENT" 而不是 fill_parent,然后在每个对象元素上使用重力和重量,直到它看起来像你想要的那样。

于 2010-12-02T15:54:14.387 回答