0
Android Studioを使用してAndroidアプリケーションにStripeを統合しようとしています。これは私の支払いのレイアウトです:タグフラグメントの予期しない名前空間接頭辞「wallet」が見つかりました
<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"
でエラーになっている』タグフラグメントのために...」
は、私はすでに
としてaswell、私のGradleモジュールにcompile 'com.stripe:stripe-android:+'
を追加しました
<meta-data
android:name="com.google.android.gms.wallet.api.enabled"
android:value="true" />
私のマニフェストに
問題は何ですか?どのように修正できますか?
私はまだ同じを取得していますエラー。私は最初にプレイサービスウォレットを追加していなかったが、それは問題を解決しなかった。あなたのフラグメントコードも使ってみましたが、wallet:environmentとfragmentModeで同じエラーが出ました。これらの行には下線が引かれていますが、アプリを実行できますが、アンドロイドの支払ボタンをクリックすることはできません。 – Kamihan