向视图添加“高程”时隐藏TextView

时间:2016-02-09 10:30:46

标签: android android-layout android-studio view

我有一个textview和一个视图,我想在视图上方显示textview,它运行良好,但在向View添加高程时,TextView隐藏在该视图下。< / p>

XML:

<View
    android:layout_width="wrap_content"
    android:layout_height="100dp"
    android:layout_margin="10dp"
    android:elevation="2dp"
    android:background="#ffffffff"
    android:id="@+id/view" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:id="@+id/textView"
    android:layout_alignTop="@+id/view"
    android:layout_toRightOf="@+id/view"
    android:layout_toEndOf="@+id/view" />

1 个答案:

答案 0 :(得分:2)

为此目的使用Framelayout,您必须删除android:background="#ffffffff",因为您没有获得提升并且隐藏了textview

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="100dp">

<View
    android:id="@+id/view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipChildren="false"
    android:elevation="2dp"
    android:scaleType="center" />

<TextView
    android:id="@+id/textView"
    android:layout_width="100dp"
    android:layout_height="50dp"
    android:layout_gravity="center_horizontal|bottom"
    android:layout_marginBottom="20dip"
    android:background="#AA000000"
    android:gravity="center"
    android:text="New Text"
    android:textColor="#ffffffff"
    android:textSize="18dp" />

检查elevation issue