0

さまざまなアイテムのリストを表示するこの XML ファイルを作成し、このリストに広告を追加することにしましたが、問題は、広告がリストの最初のアイテムをカバーし、2 番目のアイテムに直接ジャンプすることです。この問題を無効にする方法を教えてください。私が探しているもう 1 つのことは、このリストの重要度を、左ではなく右にリストされるように変更することです。これが私の問題を示す画像です。 ここに画像の説明を入力

XML ファイル:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
  android:id="@+id/list_container"
  android:measureAllChildren="true"
  android:layout_width="wrap_content" 
  android:layout_height="match_parent">

<ListView android:id="@android:id/list"
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent"
      android:drawSelectorOnTop="false"
      android:focusableInTouchMode="true"
    />

<ScrollView android:id="@+id/edit_layout"
    android:layout_width="fill_parent" 
      android:layout_height="fill_parent"
    android:visibility="gone"
    >       
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingTop="5sp"
        android:paddingLeft="10sp"
        android:gravity="right"
        android:paddingRight="15sp"
        >
        <TextView
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/list_descption_label"
            android:gravity="right"
        />
        <EditText  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:clickable="true"
            android:singleLine="true"
            android:hint="@string/list_descption_label"
            android:id="@+id/list_description"
            android:inputType="textUri"
            />
        <TextView
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/list_username_label"
            android:gravity="right"
        />
        <AutoCompleteTextView  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:singleLine="true"
            android:hint="@string/list_username_label"
            android:id="@+id/list_username"
            android:imeOptions="actionNext"
            />
        <TextView
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/list_password_label"
            android:gravity="right"
        />
        <EditText  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:singleLine="true"
            android:hint="@string/list_password_label"
            android:id="@+id/list_password"
            android:inputType="textVisiblePassword"
            />
        <TextView
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/list_email_label"
            android:gravity="left"
        />
        <AutoCompleteTextView  
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:singleLine="true"
            android:hint="@string/list_email_label"
            android:id="@+id/list_email"
            android:inputType="textEmailAddress"
            android:imeOptions="actionNext"
            />
        <TextView
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content"
            android:text="@string/list_notes_label"
            android:gravity="right"
        />
        <EditText  
            android:layout_width="fill_parent" 
            android:layout_height="fill_parent"
            android:gravity="top|left"
            android:minLines="5" 
            android:hint="@string/list_notes_label"
            android:id="@+id/list_notes"
            android:inputType="textMultiLine"
            />

    </LinearLayout>

</ScrollView>
<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="xxxxxxxxx"
    ads:loadAdOnCreate="true" >
</com.google.ads.AdView>

4

1 に答える 1

0

リストビュー ヘッダーを設定します。で XML レイアウトを作成します。

<com.google.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="xxxxxxxxx"
    ads:loadAdOnCreate="true" >
</com.google.ads.AdView>

それを膨らませて、ListView に追加します。

inflater = (LayoutInflater) context.getSystemService(
                                         Context.LAYOUT_INFLATER_SERVICE);
View adView = inflater.inflate(R.layout.myAdView, null, false);
yourListView.addHeaderView(adView);

2 番目の質問については、SDK から使用している android.R.... レイアウトをコピーし、重力を変更するか、アダプターをカスタマイズします。

于 2012-04-19T09:50:31.633 に答える