-1

我正处于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

4 回答 4

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>
于 2013-11-09T23:52:45.107 回答
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:这是初学者的建议

于 2013-11-09T23:52:47.687 回答
0

您还可以RelativeLayout用作父ImageView元素、第一个子元素和TextView第二个子元素。

于 2017-09-12T09:12:22.657 回答
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>
于 2017-10-13T09:21:37.987 回答