我只是跟着上的標籤創作教程從Android開發documentation 和我的標籤並沒有變成他們可能應該的樣子。下面是它如何找我的屏幕: alt text http://bombhot.se/files/923947/messedtabs.png的Android TabHost外觀並不如預期
,這裏是它看起來應該像:
alt text http://developer.android.com/resources/tutorials/views/images/hello-tabwidget.png
我發現,談論將在tabhost本地化,並盡一切索姆線程活動遵循相同的配置,但到目前爲止還沒有爲我工作。想知道如果 有我丟失的東西,這裏是我的清單文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.koollateral.myWallet"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon"
android:label="@string/app_name">
<activity android:name=".mywallet"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".homeActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
<activity android:name=".calendarActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
</activity>
</application>
</manifest>
我目前正在使用Android 2.1 – Krewie 2010-07-16 15:49:14