0

この例を使用した後、いくつかの問題に直面しています。実際、これはアクションバーを作成するための非常に優れたソースコードです。

私は自分のアプリケーションでこれを使用しました。しかし、アプリケーションを実行すると、myapplicationはエミュレーターにインストールされましたが、アプリケーションアイコンがエミュレーターのホーム画面に表示されません。

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>

私のアプリでアクティビティクラスを作成したいのですが、どのパッケージですべてのアクティビティファイルを作成する必要があるかを判断できません。どこでミスをしたのか教えていただければと思います。アクションバー機能を備えたアクティビティファイルを作成するにはどうすればよいですか?

4

1 に答える 1

0

あなたのパッケージを

package="com.keepintouch.android"

あなたの活動を

<activity android:name=".KeepintouchActivity"

としてレイアウトに追加する必要があります

 xmlns:app="http://schemas.android.com/apk/res/com.markupartist.android.yourActivty"
于 2012-05-29T13:22:49.520 に答える