如何修复或更改描述页面?

时间:2019-07-03 06:01:00

标签: android

从代码峡谷“ 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;
}

0 个答案:

没有答案