使用此示例后,我遇到了一些问题。事实上这是一个非常好的创建动作栏的源代码。
我在我的应用程序中使用了它。但是当我运行我的应用程序时,我的应用程序安装在模拟器上,但我的应用程序图标没有显示在模拟器主屏幕上。
我想我在我的 AndroidManifest 文件中遗漏了一些东西。下面是我的 AndroidManifest 文件的代码
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.keepintouch.android.widget.actionbar"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="14"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<!--
<activity android:name="com.keepintouch.android.KeepintouchActivity"
android:label="@string/app_name" android:theme="@android:style/Theme.Light">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
-->
</application>
</manifest>
在我的应用程序中,我想创建一个活动类,但我无法判断我应该在哪个包中创建我的所有活动文件?我想你可以告诉我我在哪里犯了错误?还请告诉我,我应该如何创建具有操作栏功能的活动文件?