2 つのイメージビューの間に配置する必要がある広告ビューがあります。私のレイアウトは
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@color/white" >
<ImageView
android:id="@+id/back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginLeft="5dp"
android:layout_marginTop="10dp"
android:background="@drawable/backwonde"
android:contentDescription="@string/app_name"
android:onClick="listt" />
<ImageView
android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="45dp"
android:layout_marginTop="10dp"
android:contentDescription="@string/app_name"
android:onClick="previous"
android:src="@drawable/left" />
<ImageView
android:id="@+id/next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="5dp"
android:layout_marginTop="10dp"
android:contentDescription="@string/app_name"
android:onClick="next"
android:src="@drawable/right" />
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/next"
ads:adSize="BANNER"
ads:adUnitId="MY PUB ID"
ads:loadAdOnCreate="true" />
<ImageView
android:id="@+id/imm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/list"
android:layout_centerHorizontal="true"
android:layout_marginTop="30dp"
android:contentDescription="@string/app_name" />
<ImageView
android:id="@+id/imm2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imm"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:contentDescription="@string/app_name" />
<TextView
android:id="@+id/stext1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imm2"
android:layout_marginLeft="10dp"
android:layout_marginTop="30dp"
android:text="@string/Tit"
android:textColor="@color/DodgerBlue"
android:textSize="18dp"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/dtext1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/stext1"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:lineSpacingExtra="0.1dp"
android:textColor="@color/black"
android:textSize="15dp"
android:textStyle="normal"
android:typeface="serif" />
<TextView
android:id="@+id/stext2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dtext1"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:text="@string/loc"
android:textColor="@color/DodgerBlue"
android:textSize="18dp"
android:textStyle="bold"
android:typeface="sans" />
<TextView
android:id="@+id/dtext2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/stext2"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp"
android:lineSpacingExtra="0.1dp"
android:textColor="@color/black"
android:textSize="15dp"
android:textStyle="normal"
android:typeface="serif" />
<TextView
android:id="@+id/stext3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/dtext2"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:text="@string/hist"
android:textColor="@color/DodgerBlue"
android:textSize="18dp"
android:textStyle="bold"
android:typeface="sans" />
<WebView
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/stext3"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="6dp"
android:background="@color/white" />
</RelativeLayout>
Imageview の「next」と「imm」の間に広告が必要です。以下の属性レイアウトを使用しようとしましたが、循環依存エラーが発生します。どのようにして達成できますか。
任意の提案をいただければ幸いです。前もって感謝します。