如何在Android中的ImageView上设置TextView

时间:2013-11-09 22:41:09

标签: android

我正在学习android的阶段。我想在ImageView上设置TextView。我没有意义。我会感恩的。这是我的XML代码。

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

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="380dp"       
        android:adjustViewBounds="true"    
        android:scaleType="fitCenter"
        android:background="@drawable/wf" />


    <TextView
   // what should i add here so that it can be visible on image view//
     />

</LinearLayout>

4 个答案:

答案 0 :(得分:1)

感谢所有人,最后我得到了解决方案。我使用FrameLayout来处理它。

这是代码

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="380dp"       
        android:adjustViewBounds="true"    
        android:scaleType="fitCenter"
        android:background="@drawable/wf" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="8"
        android:textSize="100sp"
        android:layout_marginTop="120dp"
        android:layout_marginLeft="160dp"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</FrameLayout>

答案 1 :(得分:0)

我认为你想要的是像照片标题,因此你可以通过使用相对布局实现最好的方法,你的.xml布局如下:

<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="69dp"/>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/imageView1"
    android:layout_centerHorizontal="true"
    android:text="TextView" />

记下textView

的属性
android:layout_below="@+id/imageView1"

这是关键。 如果出于任何原因,您更喜欢使用线性布局作为主布局,则可以将相对布局嵌套在嵌套在主线性布局中的表格 - 或(或其他线性布局)中

我希望这并不复杂

PS:这是初学者的建议

答案 2 :(得分:0)

您也可以使用RelativeLayout作为父级,ImageView作为第一个子元素,TextView作为第二个子元素。

答案 3 :(得分:0)

你可以像这样使用RelativeLayout:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="380dp"       
        android:adjustViewBounds="true"    
        android:scaleType="fitCenter"
        android:background="@drawable/wf" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
       />

</RelativeLayout>