如何在布局中将图像放在textview下面?

时间:2014-06-18 02:38:52

标签: java android xml android-layout

如何将图像视图放在两个文本视图下面,即tv_pw和tv_un。因此,在布局中,两个文本视图位于图像的顶部,而图像则用作两个文本视图的背景。我怎么能这样做?

这是我的xml文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="510dip"
android:layout_marginTop="10dip"
android:background="#DDDDDD">"
 <EditText
     android:id="@+id/et_pw"
     android:layout_width="150dip"
     android:layout_height="wrap_content"
     android:layout_alignLeft="@+id/et_un"
     android:layout_below="@+id/et_un"
     android:background="@android:drawable/editbox_background"
     android:ems="10"
     android:inputType="textPassword" />

 <TextView
     android:id="@+id/tv_pw"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignBaseline="@+id/et_pw"
     android:layout_alignBottom="@+id/et_pw"
     android:layout_marginRight="20dp"
     android:layout_toLeftOf="@+id/et_pw"
     android:text="Password:"
     android:textColor="#444444"
     android:textSize="10pt" />

 <Button
     android:id="@+id/btn_login"
     android:layout_width="100dip"
     android:layout_height="wrap_content"
     android:layout_below="@+id/et_pw"
     android:layout_centerHorizontal="true"
     android:text="Login" />

 <TextView
     android:id="@+id/tv_un"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignParentTop="true"
     android:layout_alignRight="@+id/tv_pw"
     android:layout_marginTop="98dp"
     android:text="User Name:"
     android:textColor="#444444"
     android:textSize="10pt" />

 <EditText
     android:id="@+id/et_un"
     android:layout_width="150dip"
     android:layout_height="wrap_content"
     android:layout_alignTop="@+id/tv_un"
     android:layout_centerHorizontal="true"
     android:background="@android:drawable/editbox_background"
     android:ems="10"
     android:inputType="text" />

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

 <TextView
     android:id="@+id/textView2"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignParentTop="true"
     android:layout_centerHorizontal="true"
     android:layout_marginTop="32dp"
     android:text="text"
     android:textAppearance="?android:attr/textAppearanceLarge" />

 <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="14dp"
     android:src="@drawable/bkground" />

7 个答案:

答案 0 :(得分:0)

将两个TextView以垂直方向包裹在线性布局中,并为线性布局指定背景。

答案 1 :(得分:0)

您的XML中还有更多内容,但是,专注于您所要求的内容,您可以使用margin属性来重叠文本视图。

尝试这样的事情

<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/image"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/myImage">
</ImageView>
<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/image"
    android:layout_marginTop="-50dp"
    android:orientation="vertical">
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world2" />
</LinearLayout>

</RelativeLayout>

在这个例子中,我将两个文本视图包装在线性布局(垂直)内,并将线性布局设置在imageview下方,边距为-50dp,使其上升并重叠。

HIH

答案 2 :(得分:0)

另一种方法是在textview中使用drawableBottom =“@ drawable / ic_launcher”

答案 3 :(得分:0)

如果您不关心如何控制图像缩放,可以设置包围TextView的LinearLayout的背景。

<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/your_background_image_here"
    android:orientation="vertical">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/text_view_1" />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/text_view_2" />
</LinearLayout>

答案 4 :(得分:0)

Try this way,hope this will help you to solve your problem.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="510dp"
    android:layout_marginTop="10dp"
    android:orientation="vertical"
    android:gravity="center"
    android:background="#DDDDDD">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="98dp">
        <LinearLayout
            android:layout_width="110dp"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@drawable/bkground">
            <TextView
                android:id="@+id/tv_un"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="User Name:"
                android:textColor="#444444"
                android:textSize="10pt" />

            <TextView
                android:id="@+id/tv_pw"
                android:layout_width="110dp"
                android:layout_height="wrap_content"
                android:text="Password:"
                android:textColor="#444444"
                android:textSize="10pt" />
        </LinearLayout>


        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginLeft="20dp">

            <EditText
                android:id="@+id/et_un"
                android:layout_width="150dp"
                android:layout_height="wrap_content"
                android:background="@android:drawable/editbox_background"
                android:ems="10"
                android:inputType="text" />
            <EditText
                android:id="@+id/et_pw"
                android:layout_width="150dp"
                android:layout_height="wrap_content"
                android:background="@android:drawable/editbox_background"
                android:ems="10"
                android:inputType="textPassword" />
        </LinearLayout>

    </LinearLayout>
    <Button
        android:id="@+id/btn_login"
        android:layout_width="100dp"
        android:layout_height="wrap_content"
        android:text="Login" />

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

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="32dp"
        android:text="text"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

答案 5 :(得分:0)

在两个文本视图和繁荣

上使用android:weight

答案 6 :(得分:0)

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        />
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />