试图将文本字段添加到小布局?

时间:2016-04-15 10:11:44

标签: android xml android-layout android-studio

我正在尝试将文本字段或按钮插入到小布局栏中,但由于某种原因它没有显示。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#d1cbcb">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#767eca">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text = "Ankosh"
            android:textColor="#ffffff"
            android:textSize="20sp"></TextView>
</RelativeLayout>
   </LinearLayout>

2 个答案:

答案 0 :(得分:1)

您必须更改内部相对布局的高度或将其标记为wrap_content

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#d1cbcb">


    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#767eca">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text = "Ankosh"
            android:textColor="#ffffff"
            android:textSize="20sp"></TextView>
</RelativeLayout>
   </LinearLayout>

答案 1 :(得分:0)

将layout_height更改为wrap_content,如果你想要textview height 50dp,那么在TextView中使用它

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#767eca">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:text = "Ankosh"
        android:textColor="#ffffff"
        android:textSize="20sp"></TextView>