1

我通过android.intent.action.SEND. 一切正常,但有时 Android 会显示一个我不想要的对话框。它与直接共享目标有关。但我没有使用这些,应用程序甚至没有对话。我该如何摆脱它?

<activity android:name=".Activities.ShareActivity">
    <intent-filter>
        <action android:name="android.intent.action.SEND" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="text/plain" />
    </intent-filter>
</activity>


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

    Intent intent = getIntent();
    String action = intent.getAction();
    String type = intent.getType();

    if (Intent.ACTION_SEND.equals(action) && type != null) {
        if ("text/plain".equals(type)) {
            String sharedText = intent.getStringExtra(Intent.EXTRA_TEXT);
            if (sharedText != null) {
                ((TextView)findViewById(R.id.textView)).setText(sharedText);
            }
        }
    }

在此处输入图像描述

4

0 回答 0