如何在它上面添加文字?

时间:2016-11-11 23:12:11

标签: java android android-studio

我正在制作布局:

layout

这是一段代码:

<?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"
    android:background="#373c5c"
    android:gravity="center_vertical"
    android:orientation="vertical" >




    <LinearLayout android:id="@+id/list_offer_item_container"
    android:layout_marginTop="15dp"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/shape"
        android:orientation="horizontal"
        android:padding="10dp">

        <ImageView
            android:id="@+id/imgcreditcompany"
            android:layout_width="36dp"
            android:layout_marginRight="4dp"
            android:layout_marginTop="0dp"
            android:layout_marginBottom="0dp"
            android:contentDescription="@string/app_name"
            android:layout_height="36dp" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="match_parent"
            android:gravity="start"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/txtname"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginTop="1dp"
                android:textColor="#48899f"
                android:textSize="@dimen/textsizeearncredit_title"
                android:text="Name"
                android:textAllCaps="false"
                android:textStyle="normal|bold" />

            <TextView
                android:id="@+id/txtdesc"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginTop="1dp"
                android:maxLines="1"
                android:textColor="#80869c"
                android:textSize="@dimen/textsizeearncredit_desc"
                android:text="This is a description of the offer and this is just a demo to show off 3 lines stacking correctly on top of each other"/>
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginRight="20dp"
            android:gravity="end"

            android:layout_gravity="center_vertical">

            <TextView android:id="@+id/list_offer_badge_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_above="@+id/list_offer_item_container"
                android:textColor="@color/md_amber_700"
                android:textSize="12sp"
                android:visibility="gone"
                android:text=""/>
        </LinearLayout>

        <ImageView
            android:id="@+id/nextArrow"
            android:layout_alignParentRight="true"
            android:tint="@color/md_grey_300"
            android:rotation="180"
            android:layout_width="32dp"
            android:visibility="gone"
            android:layout_marginRight="16dp"
            android:layout_gravity="center"
            android:layout_centerVertical="true"
            android:layout_height="32dp"
            android:contentDescription="@string/app_name"
            android:padding="@dimen/two" />

    </LinearLayout>


</RelativeLayout>

如何在&#39;按钮样式上方添加文字&#39;线性布局?

我想要例如&#34;亲爱的用户!请在下面查看&#34;。

在哪里放置textview,在哪里添加更多布局或其他什么?

2 个答案:

答案 0 :(得分:0)

很简单! 您必须添加带有ID(text)的TextView,并且在LinearLayout中,您需要添加行android:layout_below="@+id/text"。可选,您可以在TextView中指定属性android:layout_alignParentTop="true"

只需使用以下代码:

<?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"
                android:background="#373c5c"
                android:gravity="center_vertical"
                android:orientation="vertical" >

    <TextView
        android:id="@+id/text"
        android:text="Text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        />


    <LinearLayout android:id="@+id/list_offer_item_container"
                  android:layout_below="@+id/text"
                  android:layout_marginTop="15dp"
                  android:layout_marginLeft="50dp"
                  android:layout_marginRight="50dp"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content"
                  android:background="@drawable/shape"
                  android:orientation="horizontal"
                  android:padding="10dp">

        <ImageView
            android:id="@+id/imgcreditcompany"
            android:layout_width="36dp"
            android:layout_marginRight="4dp"
            android:layout_marginTop="0dp"
            android:layout_marginBottom="0dp"
            android:contentDescription="@string/app_name"
            android:layout_height="36dp" />

        <LinearLayout
            android:layout_width="0dp"
            android:layout_weight="1"
            android:layout_height="match_parent"
            android:gravity="start"
            android:orientation="vertical" >

            <TextView
                android:id="@+id/txtname"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginTop="1dp"
                android:textColor="#48899f"
                android:textSize="@dimen/textsizeearncredit_title"
                android:text="Name"
                android:textAllCaps="false"
                android:textStyle="normal|bold" />

            <TextView
                android:id="@+id/txtdesc"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="8dp"
                android:layout_marginTop="1dp"
                android:maxLines="1"
                android:textColor="#80869c"
                android:textSize="@dimen/textsizeearncredit_desc"
                android:text="This is a description of the offer and this is just a demo to show off 3 lines stacking correctly on top of each other"/>
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:layout_marginRight="20dp"
            android:gravity="end"

            android:layout_gravity="center_vertical">

            <TextView android:id="@+id/list_offer_badge_text"
                      android:layout_width="wrap_content"
                      android:layout_height="wrap_content"
                      android:layout_above="@+id/list_offer_item_container"
                      android:textColor="@color/md_amber_700"
                      android:textSize="12sp"
                      android:visibility="gone"
                      android:text=""/>
        </LinearLayout>

        <ImageView
            android:id="@+id/nextArrow"
            android:layout_alignParentRight="true"
            android:tint="@color/md_grey_300"
            android:rotation="180"
            android:layout_width="32dp"
            android:visibility="gone"
            android:layout_marginRight="16dp"
            android:layout_gravity="center"
            android:layout_centerVertical="true"
            android:layout_height="32dp"
            android:contentDescription="@string/app_name"
            android:padding="@dimen/two" />

    </LinearLayout>


</RelativeLayout>

答案 1 :(得分:0)

以上

 <LinearLayout android:id="@+id/list_offer_item_container"

把你的TextView或任何你想要的东西。像

这样的东西
<TextView android:id="@+id/myTV"
    // other attributes />

然后在 <LinearLayout android:id="@+id/list_offer_item_container"

添加android:layout_below="@id/myTV"

默认情况下,RelativeLayout会将其元素放在左上角,直到您另行指定。因此,添加此内容会使LinearLayout低于TextView

我认为混淆是RelativeLayoutLinearLayout的工作方式。您的orientationRelativeLayout无效。 RelativeLayout按照您layout_belowlayout_above等属性的顺序排列元素。但是,LinearLayout按照它们在xml文件中显示的顺序添加它们,这就是orientationLinearLayout而不是RelativeLayout中重要的原因。

您需要查看RelativeLayout.LayoutParams以及documentation的其他部分,以便更好地了解布局的工作方式以及在特定情况下最适合的布局。