试图关注这个项目 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>