在Android中使用9个补丁水平和/或垂直居中

时间:2012-07-16 09:55:04

标签: java android relativelayout nine-patch

我找不到一个谈论我的问题的话题,这似乎是我的标准......这让我觉得这是不可能的。但我试一试。

我有一个具有9个补丁背景的RelativeLayout(包含一个内容区域)。

可以将此RelativeLayout中的TextView水平和/或垂直居中于内容区域吗?

1 个答案:

答案 0 :(得分: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补丁图像是

enter image description here