TextView在Android Studio的RelativeLayout中无效

时间:2017-06-02 06:18:08

标签: android android-layout textview android-linearlayout relativelayout

我无法在显示屏上看到我的TextView。我在RelativeLayout中放置了LinearLayout和TextView,但只能看到LinearLayout而不是TextView

请帮我这个代码。提前致谢

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

    <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"
        android:orientation="vertical"
        tools:context="com.example.dakshesh.happybirthday.MainActivity">

        <ImageView
            android:src="@mipmap/ic_launcher"
            android:layout_height="0dp"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:scaleType="centerCrop"
            />

        <ImageView
            android:src="@mipmap/ic_launcher"
            android:layout_height="0dp"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:scaleType="centerCrop"
            />

        <ImageView
            android:src="@mipmap/ic_launcher"
            android:layout_height="0dp"
            android:layout_width="match_parent"
            android:layout_weight="1"
            android:scaleType="centerCrop"
            />

    </LinearLayout>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="16sp"
        android:textStyle="bold"
        android:textSize="20dp"
        android:text="Bahubali"
        />

</RelativeLayout>

1 个答案:

答案 0 :(得分:-1)

因为你没有把你的textview放在linearlayout下面。 所以textview重叠在linearlayout上,这就是为什么你看不到它。 只需将id设为linearlayout

即可
android:id="@+id/linear"

并在textview中写下这一行..

android:layout_below="linear"