意外的命名空间前缀"钱包"找到标签片段

时间:2016-08-11 12:03:09

标签: java android stripe-payments android-pay

我正在尝试使用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"

表示&#34;意外的命名空间前缀&#34;钱包&#34;标签片段......&#34;

我已添加

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

到我的gradle模块,以及

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

到我的清单。

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

1 个答案:

答案 0 :(得分:1)

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

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"/>