Я вставил свое приложение в список, как показано ниже:
<activity
android:name="xxxx.MainActivity"
android:configChanges="keyboard|keyboardHidden|screenLayout|uiMode|orientation|screenSize|smallestScreenSize"
android:label="@string/app_name"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan">
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
И я получаю значение от Intent
, как показано ниже:
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (getIntent().getExtras() != null) {
Intent intents = getIntent();
String action = intents.getAction();
String type = intents.getType();
if (action != null && type != null) {
String receivedUri = intents.getParcelableExtra(Intent.EXTRA_STREAM).toString();
}
}
}
Проблема
Но когда мое приложение недавно, я не получаю никакого значения от intent
. Что я могу сделать?