从代码峡谷“ CiyaShop Native Android”购买了应用程序,但我们陷入了困境。
我们使用的是关联产品,因此当您在应用中按产品时,将转到关联链接,而我们想要进入应用中的说明页面。
因为在常规产品中,它将在应用程序中显示描述页面。 应用程序连接到woo-commerce(word-press)的API!
尝试玩ProductQuickDetailActivity
:
package com.example.ciyashop.activity;
//TODO:For deeplinking
public void getIntentData() {
Intent intent = getIntent();
if (intent.hasExtra(RequestParamUtils.fromdeeplink)) {
isDeepLinking = intent.getBooleanExtra(RequestParamUtils.fromdeeplink, true);
} else {
isDeepLinking = false;
}