我正在开发一个新的Android电子邮件应用程序模块。
我的main.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">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<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">
<TextView
android:id="@+id/textview1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="" />
<TextView
android:id="@+id/textview2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="" />
<TextView
android:id="@+id/textview3"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="" />
<TextView
android:id="@+id/textview4"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="" />
<TextView
android:id="@+id/textview5"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="" />
</FrameLayout>
</LinearLayout>
</TabHost>
工作正常。 我的查询是: 我有5个标签(撰写邮件,收件箱,Sentmail,草稿和联系人)。单击相应的选项卡,我需要显示相应的应用程序。 例如。我点击撰写邮件标签,我需要撰写邮件应用程序才能显示,如果我点击收件箱标签我需要显示收件箱邮件等。
在这个问题上,有些人可以帮助我吗?
请向我推荐完整邮箱应用程序源代码的任何链接。
先谢谢。
答案 0 :(得分:0)
Android开发者网站上的Hello, TabWidget教程将说明您需要对标签执行的操作。
您需要为每个标签创建一个活动,并且您将设置标签主机以在它们之间进行切换(在TabActivity中):
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, InboxActivity.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("inbox").setIndicator("Inbox",
res.getDrawable(R.drawable.ic_tab_inbox))
.setContent(intent);
tabHost.addTab(spec);
...