0

admob広告を上部に配置しようとしてappいますが、通常のテキストは中央に配置する必要があります...以下のコードでは、コンポーネントの1つだけが表示されます..

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:myapp="http://schemas.android.com/apk/res/test.testpkg"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center"
    android:gravity="center"
    android:background="@drawable/background"
    android:padding = "10dip" >

    <com.admob.android.ads.AdView
        android:id="@+id/ad" 
        android:gravity="center"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        myapp:backgroundColor="#000000"
        myapp:primaryTextColor="#FFFFFF"
        myapp:secondaryTextColor="#CCCCCC" />

    <test.testpkg.CustomTextView android:id="@+id/landscapeText"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:textColor = "#000"
        android:textSize="40sp"
        android:shadowColor="#FFF"
        android:shadowDx="1.2"
        android:shadowDy="1.2"
        android:shadowRadius="1.2"
        android:gravity="center_vertical"
        android:text ="Test" />
</LinearLayout>
4

1 に答える 1

1

LinearLayout には、追加の属性 android:orientation (doc) があります。 デフォルト値は「水平」ではありませんが、「垂直」が必要です。現時点では、CustomTextView が AdView の右側で画面の外側にレンダリングされるためです。

追加のヒント: CustomTextView を実際に画面の中央に配置したい場合は、LinearLayout の代わりに RelativeLayout を使用し、属性 android:layout_centerInParent="true" を追加する必要があります -> 中央に表示されます。

于 2010-11-25T22:05:56.073 に答える