gpt4 book ai didi

java - 标签 fragment 发现意外的命名空间前缀 "wallet"

转载 作者:行者123 更新时间:2023-12-01 09:36:12 28 4
gpt4 key购买 nike

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

上面写着“标记 fragment 出现意外的命名空间前缀“wallet”...”

我已经添加

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

到我的 gradle 模块,以及

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

到我的 list 。

问题是什么,如何解决?

最佳答案

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

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 发现意外的命名空间前缀 "wallet",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38895857/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com