16

チュートリアルで見つけたコードを自分で使用するために変換しようとしています。もともと、このコードは、ユーザーがアプリによって生成された通知をクリックすると、システムの連絡先リストを起動しました。Activity連絡先リストを起動する代わりに、自分で作成しようとしていますが、うまくいきません。より具体的には、何も起こりません。エラーはなく、Activityロードもされません。クリックすると通知ウィンドウが消え、オリジナルActivityは引き続き表示されます。

これが私のコードです:

public class MyBroadcastReceiver extends BroadcastReceiver {
    private NotificationManager mNotificationManager;
    private int SIMPLE_NOTFICATION_ID;

    public void onReceive(Context context, Intent intent){
        Bundle extras = intent.getExtras();

        String deal = (String) extras.get("Deal");
        String title = "Deal found at " + (String) extras.get("LocationName");

        mNotificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
        Notification notifyDetails = new Notification(R.drawable.icon, title,System.currentTimeMillis());

        Class ourClass;
        try {
            ourClass = Class.forName("com.kjdv.gpsVegas.ViewTarget");
            Intent startMyActivity = new Intent(context, ourClass);

            PendingIntent myIntent = PendingIntent.getActivity(context, 0,startMyActivity, 0);
            notifyDetails.setLatestEventInfo(context, title, deal, myIntent);
            notifyDetails.flags |= Notification.FLAG_AUTO_CANCEL;
            notifyDetails.flags |= Notification.DEFAULT_SOUND;
            mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);
        }
        catch (ClassNotFoundException e) {
            e.printStackTrace();
        }
    }
}

これはAndroidManifext.xmlファイル内の私のエントリです...

  <activity android:name=".ViewTarget" android:label="@string/app_name" >
        <intent-filter>
            <action android:name="com.kjdv.gpsVegas.ViewTarget" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
   </activity>

そして、これは私Activityが打ち上げたい私のものです...

public class ViewTarget extends ListActivity {
    public ListAdapter getListAdapter() {
        return super.getListAdapter();
    }

    public ListView getListView() {
        return super.getListView();
    }

    public void setListAdapter(ListAdapter adapter) {
        super.setListAdapter(adapter);
    }

    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.locations);
        Log.v("db", "Inside ViewTarget");
    }
}
4

6 に答える 6

25

実行している Android のバージョンはどれですか? 代わりに NotificationCompat を使用してみてください。このクラスは、最新のサポート パッケージに含まれています。

Intent notificationIntent = new Intent(context, ViewTarget.class);
PendingIntent contentIntent = PendingIntent.getActivity(context,
                0, notificationIntent,
                PendingIntent.FLAG_CANCEL_CURRENT);

NotificationManager nm = (NotificationManager) context
                .getSystemService(Context.NOTIFICATION_SERVICE);

Resources res = context.getResources();
NotificationCompat.Builder builder = new NotificationCompat.Builder(context);
builder.setContentIntent(contentIntent)
       .setSmallIcon(R.drawable.app_icon)
       .setLargeIcon(BitmapFactory.decodeResource(res, R.drawable.app_icon))
       .setTicker(payload)
       .setWhen(System.currentTimeMillis())
       .setAutoCancel(true)
       .setContentTitle("Message")
       .setContentText(payload);
Notification n = builder.getNotification();

n.defaults |= Notification.DEFAULT_ALL;
nm.notify(0, n);

編集:これは古いスレッド/質問であることは知っていますが、この回答は、通知をタップしたときにアクティビティを表示するのに役立ちました。これが機能しない人にとっては、マニフェストにアクティビティを「登録」していないことが原因である可能性があります。例えば:

<activity
   android:name="com.package.name.NameOfActivityToLaunch"
   android:label="Title of Activity" >
   <intent-filter>
     <action android:name="com.package.name.NAMEOFACTIVITYTOLAUNCH" />

     <category android:name="android.intent.category.DEFAULT" />
   </intent-filter>
</activity>

そして、うまくいけば、これはうまくいくはずです。それが役に立ったことを願っています...

于 2012-04-17T03:16:49.517 に答える
4

Intent のアクションとカテゴリを設定する必要があります。

Intent startMyActivity = new Intent(context, ourClass);
startMyActivity .setAction(Intent.ACTION_MAIN);
startMyActivity .addCategory(Intent.CATEGORY_LAUNCHER);

できます

于 2015-05-20T14:28:52.220 に答える
4

私は問題を理解しました。マニフェスト ファイルのアクティビティ宣言にパッケージ名を含めるのを忘れていました。

違う:

activity android:name=".ViewTarget" android:label="@string/app_name" 

正しい:

activity android:name="com.kjdv.gpsVegas.ViewTarget" android:label="@string/app_name" 
于 2012-04-19T02:01:18.270 に答える
1

Activityからを起動するIntentには、フラグを追加する必要があります。

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

Intentこれは、のコンストラクターでクラスを宣言した場合でも当てはまります。

于 2012-04-17T05:05:32.373 に答える
1

このコードを確認してください

            public class TestActivity extends Activity {
private static final int UNIQUE_ID = 882;

public static NotificationManager nm;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);

        Intent navigationIntent = new Intent();


    navigationIntent.setClass(classname.this, MainActivity.class);


    PendingIntent pi = PendingIntent.getActivity(this, 0, navigationIntent,
            0);

    String body = "New notificattion added!!!";
    String title = "Notification";


    Notification n = new Notification(R.drawable.icon, body,
            System.currentTimeMillis());

            //this is for giving number on the notification icon

    n.number = Integer.parseInt(responseText);

    n.setLatestEventInfo(this, title, body, pi);
    n.defaults = Notification.DEFAULT_ALL;

    nm.notify(UNIQUE_ID, n);
于 2012-04-17T03:20:59.583 に答える
1

インテント フィルターを削除してみてください。次のようになります。

<activity android:name=".ViewTarget" android:label="@string/app_name" />

また、このコードが機能するかどうかはわかりません:

ourClass = Class.forName("com.kjdv.gpsVegas.ViewTarget"); Intent startMyActivity = new Intent(context, ourClass);

代わりに次のようにしてみてください:

Intent startMyActivity = new Intent(context, ViewTarget.class);

于 2012-04-17T03:04:30.233 に答える