将TextView放在TableRow中的ImageView中心

时间:2013-12-09 07:49:53

标签: android android-layout

我是Android新手,我想将TextView放在TableRow内的ImageView中心。 textView与图像视图分开,如何将textView放在imageView的顶部?因为它在tableRow中,所以我不能使用layout_alignLeft或layout_alignRight来居中。

非常感谢帮助我。

类似的东西:

<TableRow>
<ImageView
    android:id="@+id/durationView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/blk_duration"
    android:contentDescription="@string/logo"
    android:layout_weight="1" />

    <TextView
        android:id="@+id/durationTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="@string/duration"
        android:textColor="@color/text_color"
        android:textSize="@dimen/font_size_duration" />

    <ImageView
    android:id="@+id/durationView"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/blk_duration"
    android:contentDescription="@string/logo"
    android:layout_weight="1" />

    <TextView
        android:id="@+id/durationTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="@string/duration"
        android:textColor="@color/text_color"
        android:textSize="@dimen/font_size_duration" />

</TableRow>

2 个答案:

答案 0 :(得分:0)

在Tablerow中使用relativelayout。然后在relativelayout里面放置imageview和textview。通过将ui拖入需要放置的位置来相应地调整文本视图。希望我回答你的问题。

答案 1 :(得分:0)

尝试以下布局:

<TableRow>
    <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <ImageView
            android:id="@+id/durationView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:contentDescription="@string/logo"
            android:src="@drawable/blk_duration" />

        <TextView
            android:id="@+id/durationTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:text="@string/duration"
            android:textColor="@color/text_color"
            android:textSize="@dimen/font_size_duration" />

    </RelativeLayout>
    <RelativeLayout
        android:layout_width="odp"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <ImageView
            android:id="@+id/durationView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:contentDescription="@string/logo"
            android:src="@drawable/blk_duration" />

        <TextView
            android:id="@+id/durationTextView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:text="@string/duration"
            android:textColor="@color/text_color"
            android:textSize="@dimen/font_size_duration" />

    </RelativeLayout>
</TableRow>