在android中添加padding到scrollview的底部?

时间:2013-01-29 02:44:15

标签: android xml scrollview

我想在此滚动视图的底部添加填充,因为文本与我底部的广告重叠。我是android dev的新手。我看了几个其他的帖子,但似乎无法弄清楚我的问题。谢谢!

这是我的weddingfragment.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fillViewport="false"
    android:gravity="center"
    android:scrollbars="horizontal" android:id="@+id/ScrollView">

<LinearLayout
    android:layout_width="fill_parent"                      
    android:orientation="vertical"
    android:id="@+id/linearLayout2" 
    android:layout_height="wrap_content"  
    android:layout_gravity="center_vertical|center_horizontal">

<TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Formal or Black Tie"
        android:layout_marginTop="16dp"
        android:textAppearance="?android:attr/textAppearanceMedium" 
        android:textStyle="bold" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=" • This means you should wear a Tuxedo or a dark colored suit."
        android:textAppearance="?android:attr/textAppearanceSmall" />
   </LinearLayout>
</ScrollView>

这是我的activity_main.xml,它是weddingfragment.xml的父级

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent" >

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

1 个答案:

答案 0 :(得分:1)

正如我在评论中所说的,这是一个XML示例,您可以使用它来对片段进行运行时更改并仍然具有您的广告视图:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

<!-- Get a reference to this fragment and use the fragment .commit() to change it. See the API guides for more info. It must be a framelayout or you can't edit it. -->
        <FrameLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/frag_wedding_container"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >
        </FrameLayout>

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

    </LinearLayout>