2017-12-23 17 views
0

私はbc_fromからbc_toにブロードキャストしようとしています。
私はアクティビティbc_toで使用している場合は正常に動作します:app1からapp2へのブロードキャスト

registerReceiver(receiver, filter); 

私はマニフェストに受信機を定義する場合、それは動作しません。

私は、26日以降は不可能かもしれないことを文書から理解しています。
したがって、実行していない場合でもアクティビティbc_toに到達するすべてのソリューションを探しています。

おかげ

// package com.yotam17.ori.bc_from; 
public class MainActivity extends AppCompatActivity { 

    private static final String BC_ACTION = "com.yotam17.ori.bc.Broadcast"; 

    private void send() { 
     Intent intent = new Intent(BC_ACTION); 
     intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES); 
     sendBroadcast(intent); 
    } 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     send(); 
    } 
} 


そしてbc_fromのマニフェストcontainesと2 clasesのためのコード:

<application 
    android:allowBackup="true" 
    android:icon="@mipmap/ic_launcher" 
    android:label="@string/app_name" 
    android:roundIcon="@mipmap/ic_launcher_round" 
    android:supportsRtl="true" 
    android:theme="@style/AppTheme"> 

    <receiver android:name="com.yotam17.ori.bc_to.MyReceiver" > 
     <intent-filter> 
      <action android:name="com.yotam17.ori.bc.Broadcast"/> 
     </intent-filter> 
    </receiver> 

    <activity 
     android:name=".MainActivity" 
     android:label="@string/app_name" 
     android:theme="@style/AppTheme.NoActionBar"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 
</application> 


// package com.yotam17.ori.bc_to; 
public class MainActivity extends AppCompatActivity { 

    private static final String BC_ACTION = "com.yotam17.ori.bc.Broadcast"; 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     // Register MyReceiver 
     IntentFilter filter = new IntentFilter(BC_ACTION); 
     MyReceiver receiver = new MyReceiver(); 
     registerReceiver(receiver, filter); //<<<<<< Does not work w/o this 
    } 
} 


public class MyReceiver extends BroadcastReceiver { 

    @Override 
    public void onReceive(Context context, Intent intent) { 

     Toast.makeText(context, "Got it!!!" , Toast.LENGTH_SHORT).show(); 
    } 
} 
+0

使用明示的な 'Intent'(例えば、::ここで変更sendがある()のコード -


は実施例ようにするには暗黙の 'Intent'ではなく、//developer.android.com/reference/android/content/Intent.html#setComponent(android.content.ComponentName)))です。 – CommonsWare

答えて

0

ありがとうございました!
setComponent()はそれを解決しました。
前にsetComponent()を使ったことはありませんでしたが、詳細な例はhereでした。 [ `setComponent()`](HTTPS経由

private void send() { 
    Intent intent = new Intent(BC_ACTION); 
    intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES); 
    intent.setComponent(new ComponentName("com.yotam17.ori.bc_to","com.yotam17.ori.bc_to.MyReceiver")); 
    sendBroadcast(intent); 
} 
関連する問題