在ImageView下面显示TextView

时间:2015-08-26 14:14:14

标签: android xml

我有一些问题将TextView放在我的XML中的ImageView下面,所以我很好奇它是否可能。

以下是一些示例代码:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

--- Lots of Code ---

    <RelativeLayout
        android:id="@+id/swipe_container_seekBar"
        android:layout_width="match_parent"
        android:layout_height="120dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignLeft="@id/seekbar_leftball"
            android:layout_below="@id/seekbar_leftball"
            android:text="@string/swipe_filter_seekBar_job"
            android:textAlignment="center" />

        <ImageView
            android:id="@+id/seekbar_leftball"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_alignParentLeft="true"
            android:layout_centerInParent="true"
            android:layout_marginLeft="36dp"
            android:src="@drawable/seekbar_ball"
            android:tint="@color/red"/>
    </RelativeLayout>
</LinearLayout>

正如你所看到的,我可以将它固定在ImageView的左侧,但我无法找到它的中心。

3 个答案:

答案 0 :(得分:2)

很简单:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"   
                android:layout_centerVertical="true"
                android:layout_centerHorizontal="true">
            <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:id="@+id/imageView5" android:src="@android:drawable/ic_menu_camera"
                    android:layout_gravity="center"/>
            <TextView
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:text="New Text"
                    android:id="@+id/textView5" android:gravity="center"/>
        </LinearLayout>
    </RelativeLayout>
</LinearLayout>

结果:

enter image description here

答案 1 :(得分:1)

使用带有drawables的文本视图

yourextView.setCompoundDrawablesWithIntrinsicBounds(_left, _top, _right, _bottom);

答案 2 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:src="@mipmap/ic_launcher"
     />
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
      android:gravity="center"
        android:layout_height="wrap_content"
       android:layout_centerInParent="true">
    <ImageView
        android:id="@+id/logo2"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_centerInParent="true"
        android:src="@mipmap/ic_launcher"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
android:layout_below="@+id/logo2"

        android:text="AAAAAAA"
        android:textStyle="bold"
/>
    </LinearLayout>
</RelativeLayout>