0

如何在选项卡中放置长滚动视图?这是我的代码:资源 ressources = getResources(); TabHost tabHost = getTabHost();

            // Android tab
            Intent intentAndroid = new Intent().setClass(this, ScrollActivity1.class);
            TabSpec tabSpecAndroid = tabHost
                .newTabSpec("Android")
                .setIndicator("", ressources.getDrawable(R.drawable.tab_checkin))
                .setContent(intentAndroid);

            // Apple tab
            Intent intentApple = new Intent().setClass(this, ScrollActivity2.class);
            TabSpec tabSpecApple = tabHost
                .newTabSpec("Apple")
                .setIndicator("", ressources.getDrawable(R.drawable.tab_contatti))
                .setContent(intentApple);
4

1 回答 1

1

该活动在 FrameLayout 的主机选项卡内运行,因此,无论您为 ScrollActivity1 和 ScrollActivity2 在 setContextView 中放置什么 UI,您都将获得它作为选项卡的内容。

您需要将 ScrollView 作为活动的布局 xml 中的顶级布局元素。

于 2012-05-18T11:02:31.417 回答