gpt4 book ai didi

android - Android 中的选项卡无法正常工作?

转载 作者:行者123 更新时间:2023-11-29 01:55:48 26 4
gpt4 key购买 nike

我使用 tabHost 在我的应用程序中创建了 4 个选项卡, 它工作正常。下面我展示了我只添加 2 个选项卡的代码。

           public class Home_tab extends TabActivity {


public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.home_main);

Resources ressources = getResources();
TabHost tabHost = getTabHost();

// Android tab

Intent intentAndroid = new Intent().setClass(this, CoalActivity.class);
TabSpec tabSpecAndroid = tabHost


.newTabSpec("Android")

.setIndicator("", ressources.getDrawable(R.drawable.tab_dis))
.setContent(intentAndroid);

// Apple tab
Intent intentApple = new Intent().setClass(this, EnergyActivity.class);
TabSpec tabSpecApple = tabHost
.newTabSpec("Apple")

.setIndicator("", ressources.getDrawable(R.drawable.tab_foc))
.setContent(intentApple);


// add all tabs
tabHost.addTab(tabSpecAndroid);
tabHost.addTab(tabSpecApple);

}
}

这是我的xml文件

       <?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"
android:background="@drawable/background"
android:scrollbarAlwaysDrawHorizontalTrack="true"
>
<LinearLayout
android:orientation="vertical"
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" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</LinearLayout>
</TabHost>

但我的问题是当我添加更多选项卡时,它们出现在同一个窗口中。例如,目前我添加了 4 个选项卡,当我尝试再添加 3 个选项卡时,所有选项卡都出现在同一个窗口中?我只想在同一个窗口中添加 4 个选项卡,其他选项卡应该只在我滚动选项卡栏时出现怎么解决??

最佳答案

检查以下链接,让我知道它们是否有助于解决您的问题

Link1

Link2

link3

关于android - Android 中的选项卡无法正常工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15243464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com