2

私の標準のように思える私の問題について話しているトピックを見つけることができません...そしてそれは私にそれが不可能であると思わせます。しかし、私は試してみます。

9パッチの背景(コンテンツ領域を含む)のRelativeLayoutがあります。

コンテンツ領域に関連して、このRelativeLayout内のTextViewを水平方向および/または垂直方向に中央揃えにすることは可能ですか?

4

1 に答える 1

3

このレイアウトファイルはタスクを実行します

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background"
    android:gravity="center" >

    <TextView
        android:id="@+id/txtTest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Test TextView"
        android:textColor="#000000" >
    </TextView>

</RelativeLayout>

私が使用した9パッチ画像は

ここに画像の説明を入力

于 2012-07-16T10:26:08.017 に答える