图像留给TextView,Textview应位于中心

时间:2014-10-14 17:12:02

标签: android android-layout textview

我需要在Tablelayout中使用textview,并在TextView中留下图像图标。 TableLayout的宽度为fill_parent,因此可以单击整个区域。

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

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="50dp"
        android:layout_gravity="top"
        android:drawablePadding="5dp"
        android:drawableStart="@drawable/down_arrow"
        android:gravity="start|center"
        android:text="@string/hello_world" />
</TableLayout>

我尝试将带有图像的Textview带到中心,但无法做到这一点。 请帮助我实现同样的目标。

由于 Vikash

This is the output i am getting, I need textview and Image in center

2 个答案:

答案 0 :(得分:1)

试试这个:

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

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

            <TextView
                android:id="@+id/textView1"
                android:layout_width="wrap_content"
                android:layout_height="50dp"
                android:drawablePadding="5dp"
                android:drawableStart="@drawable/ic_launcher_0"
                android:gravity="start|center"
                android:text="@string/hello_world" />
        </TableRow>
    </TableLayout>

enter image description here

答案 1 :(得分:0)

使用此:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="32dp"
    android:src="@drawable/app_icon" />

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/imageView1"
    android:layout_marginBottom="24dp"
    android:layout_marginLeft="20dp"
    android:layout_toRightOf="@+id/imageView1"
    android:text="TextView" />

</RelativeLayout>