我在 android 中有一个 tabView,它的创建方式如下:
Intent intentAndroid = new Intent().setClass(this, AndroidActivity.class);
TabSpec tabSpecAndroid = tabHost.newTabSpec("Android");
tabSpecAndroid.setIndicator("", ressources.getDrawable(R.drawable.icon_android_config));
tabSpecAndroid.setContent(intentAndroid);
// Apple tab
Intent intentApple = new Intent().setClass(this, AppleActivity.class);
TabSpec tabSpecApple = tabHost.newTabSpec("Apple");
tabSpecApple.setIndicator("", ressources.getDrawable(R.drawable.icon_apple_config));
tabSpecApple.setContent(intentApple);
AppleActivity.class 定义如下:
public class AppleActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.apple_layout);
TextView textview = (TextView)findViewById(R.id.apple_textView);
textview.setText("This is Apple tab");
}
}
但是我在名为“Apple”的选项卡中单击了 TextView 中未显示的字符串“这是 Apple 选项卡”。这里有什么问题?请帮我解决。图片如下:
但是当我单击“Android”等其他选项卡时,图片如下:
为什么 android 选项卡中的 textView 工作正常,为什么不在 Apple 选项卡中?
AppleLayout.xml 的 alyout 如下:
<?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">
<ListView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:id="@+id/listView1">
</ListView>
<TextView
android:text="TextView"
android:id="@+id/apple_textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
</LinearLayout>