1

使用 TabHost 和 TabWidget 我在 android 中创建了两个选项卡,第二个选项卡的问题是它必须显示带有图像的列表视图。所以我使用了这里给出的想法http://wptrafficanalyzer.in/blog/listview-with-images-and-text-using-simple-adapter-in-android/

所以我的 tab2 指的是该链接中给出的 mail.xml。如何从 tab2 调用 mainactivity.java 以便显示列表的内容?

.//tab 1 contents
.
TabSpec spec2 = tabHost.newTabSpec("Categories");
spec2.setIndicator("Categories",
getResources().getDrawable(R.drawable.ic_menu_categories));
spec2.setContent(R.id.main);
.
.

在这里,我需要调用使用简单适配器创建该列表视图的类。我怎么做?请回复

4

2 回答 2

1

通过膨胀布局

用于充气

不知道您使用的是哪种布局

LayoutInflater inflate = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflate.inflate(R.id.main, null);

现在您可以在选项卡中将其设置为 contentView

spec2.setContent(view);
于 2012-12-28T12:15:05.653 回答
1

据我了解,您需要在 Tab2 中打开 MainActivity。为此,您必须执行以下操作:

TabSpec spec2 = tabHost.newTabSpec("Categories");
spec2.setIndicator("Categories",
getResources().getDrawable(R.drawable.ic_menu_categories));
Intent intent = new Intent( getApplicationContext( ), MainActivity.class );
spec2.setContent( intent );
于 2012-12-28T12:51:16.660 回答