0

我创建了这个 XML 文件,它显示了一个不同项目的列表,我决定在这个列表中添加广告,但问题是广告覆盖了列表中的第一个项目并直接跳转到第二个项目。任何人都可以告诉我如何解决这个问题?我正在寻找的另一件事是更改此列表的重力,使其列在右侧而不是左侧。这是一个说明我的问题的图像: 在此处输入图像描述

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);

对于您的第二个问题,请从 SDK 复制您正在使用的 android.R.... 布局并更改重力或自定义您的适配器。

于 2012-04-19T09:50:31.633 回答