-1

我想实现滚动视图但具有 layoutweight 属性。实际上我想在全屏上显示我的活动内容,如果用户向下滚动然后他可以看到广告我该怎么做请告诉我。

4

2 回答 2

1

你应该在你的滚动视图中添加你的广告横幅......这样的东西:

<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">

<LinearLayout android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <LinearLayout android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        >

    </LinearLayout>

    <com.ads.adsbanner
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/myAdBaner"/>

</LinearLayout>

</ScrollView>

只需将您的内容添加到“内容”。

于 2013-10-01T10:28:04.333 回答
0

我没有完全理解你的问题,但我认为以下布局对你有用......请告诉你是否有任何问题

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <!-- MAIN CONTENT -->
        </LinearLayout>
    </ScrollView>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- ADS -->
    </LinearLayout>

</LinearLayout>
于 2013-10-01T10:02:56.407 回答