我的应用程序工作正常,但每当我在我的清单中添加深层链接代码时,我的应用程序午餐图标消失,这是我的清单文件
<activity
android:name=".login.LoginActivity"
android:screenOrientation="portrait">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" />
<data android:host="gizbo.ae" />
</intent-filter>
</activity>
当我为深度链接添加这三行时。应用程序图标启动图标将从设备中消失。
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" />
<data android:host="gizbo.ae" />
即使我删除了这两行
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
同样的问题。
我只是想让我的应用在Google搜索中可见,我正在关注此link
答案 0 :(得分:9)
您必须使用多个intent-filter标记:
<activity
android:name=".login.LoginActivity"
android:screenOrientation="portrait">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="https" />
<data android:host="gizbo.ae" />
</intent-filter>
</activity>
答案 1 :(得分:0)
您必须添加其他活动才能使用深层链接,然后启动您的登录活动并将数据传递给该活动。
所以宣布活动如下:
<activity
android:name=".DeelinkActivity"
android:screenOrientation="portrait"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize|stateAlwaysHidden">
<!-- URL scheme -->
<intent-filter>
<data android:host="gizbo.ae"
android:scheme="https" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<!-- End URL scheme -->
</activity>
然后在该活动的onCreate中,您也可以从那里调用登录活动,您可以将数据传递给该活动。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent intent = getIntent();
String action = intent.getAction();
Uri data = intent.getData();
//put code to pass data as extras and Start your login activity here
}
祝你好运。