このプロジェクトをフォローしようとしています http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/
実行すると、すべてが正常にインストールされていると表示されますが、何も表示されず、アプリの下に表示されません。アプリケーションマネージャーの下にあります。アプリがインストールされて起動しない原因は何ですか?
編集:これが私のマニフェストです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tabs"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<activity android:name="TabsFragmentActivity" >
</activity>
</application>
</manifest>