带有TabActivity的Android简单应用

时间:2010-11-17 08:50:34

标签: android tabactivity

我是Android新手,我一直在尝试在Android开发者网站上重用关于开发TabActivity App的教程,但不幸的是,它从未奏效,即使我构建它的方式与描述完全相同... 使用调试器似乎问题来自主要布局。

-> setContentView(R.layout.main); //After this line the app stops.

这是我的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"        
  android:padding="5dp">        
  <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"            
   android:padding="5dp" />    
 </LinearLayout>
</TabHost>

如果有人有同样的问题,或者有人有一些建议,欢迎他们:)

坦克很多!

兰迪

1 个答案:

答案 0 :(得分:1)

您发布的xml与TabHost example相同,并且没有任何问题。 你的代码中肯定有东西。

请发布代码,否则我们无法帮助您。