gpt4 book ai didi

java - 广播接收器 - 在应用程序之间发送字符串

转载 作者:行者123 更新时间:2023-11-30 01:43:03 25 4
gpt4 key购买 nike

我正在尝试将字符串从应用程序发送到应用程序。

第一个名为“send”的应用程序只有“MainActivity”类和布局:

private void sendMsg(){

final TextView msg = (TextView) findViewById(R.id.sendText);
Button snd = (Button)findViewById(R.id.sendButton);

snd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(!msg.getText().toString().trim().equals("")){
Intent intent = new Intent("Updated");
intent.setAction(Intent.ACTION_SEND);
intent.putExtra("TEXT", msg.getText().toString().trim());
intent.setType("text/plain");
intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES);
intent.setComponent(new ComponentName("com.example.rec","com.example.rec.broadcastReciver"));
getApplicationContext().sendBroadcast(intent);
}else{
Toast.makeText(getApplicationContext(), "Write text that You want to broadcast!", Toast.LENGTH_LONG).show();
}
}
});
}

第二个名为“rec”的应用程序有两个类“broadcastReciver”和“MainActivity”。

主要 Activity :

public class MainActivity extends AppCompatActivity {

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

private void zoviBroadCast(){
broadcastReciver brcv = new broadcastReciver();
registerReceiver(brcv,
new IntentFilter("action"));
}
}

广播接收器:

public class broadcastReciver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent)
{
//String data = intent.getStringExtra("TEXT").trim();
if (intent != null)
{
String sIntentAction = intent.getAction();
if (sIntentAction != null && sIntentAction.equals("action"))
{
String data = intent.getStringExtra("TEXT").trim();
Toast.makeText(context, data, Toast.LENGTH_LONG).show();
}
else {
Toast.makeText(context,"Something went wrong",Toast.LENGTH_SHORT).show();
}
}

}
}

我还在“AndroidManifest.xml”中的标记“receiver”之间添加了行:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.rec">

<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">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".broadcastReciver"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="action" />
</intent-filter>
</receiver>
</application>
</manifest>

应用程序应该做的是,当我在第一个应用程序中输入某些内容并通过按钮发送另一个内容时,它应该在第二个应用程序中“广播”(显示) toast 。

我的第二个应用程序在运行时未显示任何数据。

最佳答案

现在,必须在广播接收器的意图过滤器中指定操作。

<receiver android:name="MyReceiver" >
<intent-filter>
<action android:name="android.intent.action.MY_ACTION">
</action>
</intent-filter>
</receiver>

发送广播时,您需要设置与发送的意图完全相同的操作。

Intent i = new Intent();
i.setAction("android.intent.action.MY_ACTION");
context.sendBroadcast(i);

操作名称的表示法对于让您的代码正常运行可能不是很重要,但我建议提供与发送应用程序的包相关的名称。例如:“com.username.example.myApplication.ACTION_EXAMPLE”

关于java - 广播接收器 - 在应用程序之间发送字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59247606/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com