gpt4 book ai didi

android - 无法从android中的数组值创建多个选项卡

转载 作者:行者123 更新时间:2023-11-30 02:54:47 25 4
gpt4 key购买 nike

现在我正在尝试在 android 中创建一个多选项卡主机。即,我试图根据数组的大小显示多个选项卡,这意味着如果该数组有十个值,我想在十个不同的选项卡中显示这 10 个值,但我无法解析这些值。谁能告诉我我在来源中犯了什么错误?请提出建议。

感谢您的宝贵时间!..

LOGCAT

    05-05 08:55:24.514: E/AndroidRuntime(796): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.dynamic_tabhost/com.example.dynamic_tabhost.MainActivity}: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1647)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1663)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread.access$1500(ActivityThread.java:117)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:931)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.os.Handler.dispatchMessage(Handler.java:99)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.os.Looper.loop(Looper.java:123)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread.main(ActivityThread.java:3683)
05-05 08:55:24.514: E/AndroidRuntime(796): at java.lang.reflect.Method.invokeNative(Native Method)
05-05 08:55:24.514: E/AndroidRuntime(796): at java.lang.reflect.Method.invoke(Method.java:507)
05-05 08:55:24.514: E/AndroidRuntime(796): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
05-05 08:55:24.514: E/AndroidRuntime(796): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
05-05 08:55:24.514: E/AndroidRuntime(796): at dalvik.system.NativeStart.main(Native Method)
05-05 08:55:24.514: E/AndroidRuntime(796): Caused by: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.TabActivity.onContentChanged(TabActivity.java:105)
05-05 08:55:24.514: E/AndroidRuntime(796): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:210)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.Activity.setContentView(Activity.java:1657)
05-05 08:55:24.514: E/AndroidRuntime(796): at com.example.dynamic_tabhost.MainActivity.onCreate(MainActivity.java:24)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
05-05 08:55:24.514: E/AndroidRuntime(796): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1611)
05-05 08:55:24.514: E/AndroidRuntime(796): ... 11 more

MainActivity.java

public class MainActivity extends TabActivity {

String[] arr_values = {"Tab1","Tab2","Tab3","Tab4","Tab5","Tab6","Tab7","Tab8","Tab9","Tab10"};
public static TabHost tabHost;

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);

addTab(arr_values);
}

private void addTab(String[] values)
{
tabHost = getTabHost();
TabHost.TabSpec spec = tabHost.newTabSpec(values);
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(), false);
TextView txtvw = (TextView) tabIndicator.findViewById(R.id.topics);
for (int i = 0; i < arr_values.length; i++)
{
txtvw.setText(i);
spec.setIndicator(tabIndicator);
tabHost.addTab(spec);
}
} }

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_weight="1">


<TabHost
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</TabWidget>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
android:id="@+id/tab1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>

<LinearLayout
android:id="@+id/tab2"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</LinearLayout>

</FrameLayout>
</LinearLayout>
</TabHost>

</LinearLayout>

tab_indicator.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/topics"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Tabview Name" />

</LinearLayout>

最佳答案

TabHost.TabSpec spec = tabHost.newTabSpec(values[i]);

这应该在 for 循环内。现在,您在每个循环中更新一个选项卡。

您应该在每个循环中创建一个新选项卡。像这样:

tabHost = getTabHost();

for (int i = 0; i < values.length; i++)
{
TabHost.TabSpec spec = tabHost.newTabSpec(values[i]);
View tabIndicator = LayoutInflater.from(this).inflate(R.layout.tab_indicator, getTabWidget(), false);
TextView txtvw = (TextView) tabIndicator.findViewById(R.id.topics);

// Here you need to "cast" the Integer to String, otherwise Android will try to
// find the String in the Resources.
txtvw.setText(""+i);
spec.setIndicator(tabIndicator);
tabHost.addTab(spec);
}

更新:

android:id="@+id/tabhost"

应该改成这样:

android:id="@android:id/tabhost"

关于android - 无法从android中的数组值创建多个选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23467677/

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