现在我正在尝试在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>
答案 0 :(得分:1)
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"