-1

そのため、以前は、遊んでさまざまなソリューションを試した後、ジャンクxmlがあったと言いましたが、1つではなく2つのエラーが発生しました! ?xml version="1.0" encoding="utf-8"?> の横にエラーが表示されます:エラー解析プレフィックス: unbound XML

com.admob.android.ads.AdView の横にある他のエラーには、次のように書かれています:ルート要素に続くドキュメントのマークアップは整形式でなければなりません。

     <?xml version="1.0" encoding="utf-8"?<
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 

/>

<com.admob.android.ads.AdView
  android:id="@+id/ad" 
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content"
  xmlns:backgroundColor="#000000"
  xmlns:primaryTextColor="FFFFFF"
  xmlns:secondaryTextColor="#CCCCCC"
  android:layout_alignParentTop="true"
  ads:adUnitId="xxxxxxxxxxxx"
  ads:adSize="BANNER"
  ads:loadAdOnCreate="true"
  /> 
4

2 に答える 2

1

<?xmlXML ファイルの最初の文字である必要があります。

先頭の空白を削除します。

于 2012-09-30T02:10:33.703 に答える
0

コンテナが必要です。Eclipses の「アウトライン」ウィンドウで右クリックし、WebView「コンテナーでラップ」を選択します。

Eclipse を使用していない場合は、Webview と AdView をレイアウト ウィジェット内に配置します。

例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/layoutContainer"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <WebView
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

    <com.admob.android.ads.AdView xmlns:backgroundColor="#000000"
        xmlns:primaryTextColor="FFFFFF"
        xmlns:secondaryTextColor="#CCCCCC"
        android:id="@+id/ad"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        ads:adSize="BANNER"
        ads:adUnitId="xxxxxxxxxxxx"
        ads:loadAdOnCreate="true" />

</LinearLayout>
于 2012-09-30T02:15:01.003 に答える