我正在尝试使用Android Studio将Stripe集成到我的android应用程序中。这是我的付款方式:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:wallet="http://schemas.android.com/apk/res-auto"
    tools:context="me.cm.ap.Payment">

<fragment
    android:id="@+id/wallet_fragment"
    android:name="com.google.android.gms.wallet.fragment.SupportWalletFragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    wallet:enviroment="test"
    wallet:fragmentMode="buyButton" />


所以在上面的代码中,我遇到了一个错误

wallet:enviroment="test"
wallet:fragmentMode="buyButton"


说“标签片段的意外的名称空间前缀“钱包” ...”

我已经加了

compile 'com.stripe:stripe-android:+'


到我的gradle模块,以及

<meta-data
        android:name="com.google.android.gms.wallet.api.enabled"
        android:value="true" />


在我的清单上。

有什么问题,我该如何解决?

最佳答案

如果您没有添加播放服务,请在其中添加行并进行重建:

compile 'com.google.android.gms:play-services:9.4.0'
compile 'com.google.android.gms:play-services-wallet:9.4.0'

之后,如果您仍然遇到此错误,请更改付款布局,如下所示:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:wallet="http://schemas.android.com/apk/res-auto"
android:id="@+id/wallet_fragment"
android:name="com.google.android.gms.wallet.fragment.SupportWalletFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
wallet:environment="test"
wallet:fragmentMode="buyButton"/>

关于java - 为标签 fragment 找到了意外的 namespace 前缀“钱包”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38895857/

10-14 02:36