使用Layoutweight标签滚动视图

时间:2013-10-01 09:25:46

标签: android android-ui android-scrollview

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

2 个答案:

答案 0 :(得分: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>

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

答案 1 :(得分: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>