我正在使用Tabs,每个标签显示一个列表视图
我的代码如下:(我只显示第一个选项卡的代码) 任何人都可以帮助我在哪里出错?
MY XML文件如下
<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" >
<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="60dp" >
<ListView
android:id="@+id/pcards_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>
</LinearLayout>
</FrameLayout>
我的MAIN.XML如下
IT显示没有错误,但是当我在模拟器上运行时,程序仍会崩溃
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TabHost mtabhost =(TabHost)findViewById(R.id.tabHost);
mtabhost.setup();
TabSpec spec1 = mtabhost.newTabSpec("Tab 1");
spec1.setContent(R.id.tab1);
spec1.setIndicator("Personal Cards");
ListView pcards_list= (ListView)findViewById(R.id.pcards_list);
ArrayList<String> pcards_arraylist = new ArrayList<String>();
ArrayAdapter<String> adapter1= new ArrayAdapter<String(this,android.R.layout.simple_list_item_2,pcards_arraylist);
pcards_list.setAdapter(adapter1);
mtabhost.addTab(spec1);
}
}
请帮帮我!
并且任何人都可以在标签上提供一个很好的教程,还有使用listview片段的标签吗? 提前谢谢你
答案 0 :(得分:1)
这是一个很好的教程:http://android.codeandmagic.org/2011/07/android-tabs-with-fragments/ 另请查看:http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/
答案 1 :(得分:1)
我从Travis(84-86)的Tutorial中学习了Tabs。 不确定它是否真的有帮助,而你之前没有做其余的事情。
答案 2 :(得分:1)
<强> 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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<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" >
<LinearLayout
android:id="@+id/tab1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ListView
android:id="@+id/myList"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</ListView>
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>
<强> AndroidTabActivity.java 强>
public class AndroidTabActivity extends TabActivity {
ListView mList;
String[] myContacts = { "Anirudh", "Sonia", "Raj", "Sachin" };
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mList = (ListView) findViewById(R.id.myList);
ArrayAdapter<String> myAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, myContacts);
mList.setAdapter(myAdapter);
TabHost tabHost = getTabHost();
// Tab for Contact
TabSpec contactspec = tabHost.newTabSpec("Contact");
// setting Title for the Tab
contactspec.setIndicator("Contact");
contactspec.setContent(R.id.tab1);
// Tab for Song
TabSpec songspec = tabHost.newTabSpec("Song");
songspec.setIndicator("Songs");
Intent songIntent = new Intent(this, SongActivity.class);
songspec.setContent(songIntent);
// Adding all TabSpec to TabHost
tabHost.addTab(contactspec); // Adding contact tab
tabHost.addTab(songspec); // Adding song tab
}
}
通过这种方式,您可以创建标签并将相应的Activity
设置为内容。
希望这有帮助。
答案 3 :(得分:0)
你是否已经Activity
允许AndroidManifest.xml
?如果没有,请在application
标记下添加权限,如下所示:
<activity android:name="MainActivity"/>