如何在Android布局中的IMAGEVIEW上放置TEXTVIEW中心

时间:2014-03-08 15:04:00

标签: android android-layout android-listview

我想知道,如何在图像上放置文本中心,这是样本图像,

enter image description here

我尝试了以下代码,但它工作不正常,

<LinearLayout
    android:layout_width="100dip"
    android:layout_height="fill_parent"
    android:layout_marginRight="5dip"
    android:gravity="center"
    android:orientation="vertical" >
    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <TableRow 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">

            <TextView
                android:id="@+id/points"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center_vertical"
                android:text="+2"
                android:textColor="#fff"
                android:textSize="16sp" />

            <ImageView
                android:id="@+id/btbt"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/btbt" />
         </TableRow>
    </TableLayout>      
</LinearLayout> 

请让我知道一个很好的解决方案。

2 个答案:

答案 0 :(得分:2)

您可以使用图像按钮来实现此目的 我更喜欢使用图像按钮 .. 要么 将此imageview按此顺序放置

<TableRow 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
<Relativelayout android:layout_width="wrap_content"
                android:layout_height="match_parent" >
            <TextView
                android:id="@+id/points"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
               android:layout_centerInParent="true"
                android:text="+2"
                android:textColor="#fff"
                android:textSize="16sp" />
            <ImageView
                android:id="@+id/btbt"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/btbt" />
</Relativelayout >
         </TableRow>

答案 1 :(得分:1)

您可以尝试使用背景图片创建文本视图。类似的东西:

        <TextView 
        android:id="@+id/textview1"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:gravity="center"
        android:textColor="#000000"
        android:textStyle="bold"
        android:text="Random Text"
        android:background="@drawable/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>