android:将textView放在图像的确切位置

时间:2015-01-30 06:15:46

标签: android layout

我正在为餐馆建立一个菜单。我有这个模板菜单图片: http://img.majidonline.com/pic/313384/background3.png 这是我必须做的: http://img.majidonline.com/pic/313385/background3.png 这是我的布局代码:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background3">

    <FrameLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"></FrameLayout>
</ScrollView>

当我向这个xml添加任何元素时,元素会粘在左上角,我无法将其位置更改为我想要的位置。 我使用values.xml作为价格,所以我不能只放一个静态图像。 我正在使用android studio,我是android的新手,所以请帮忙! 感谢

1 个答案:

答案 0 :(得分:1)

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
>

<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
    <ImageView
    android:id="@+id/background"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"
    android:background="@drawable/background3"
    ></ImageView>
    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
        <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_marginRight="50dp"
        android:layout_marginTop="150dp"
        android:text="Dishes" />

        <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView1"
        android:layout_marginRight="50dp"
        android:text=".............." />

        <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView2"
        android:layout_marginRight="50dp"
        android:orientation="horizontal"
        android:gravity="right"
        >
            <TextView
            android:id="@+id/textView3_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="12$" />

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

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="food" />
        </LinearLayout>

    </RelativeLayout>
</FrameLayout>