阴影在布局Android中不起作用

时间:2016-06-29 07:55:09

标签: android android-layout shadow

我有阴影问题。在Android Studio预览中显示:

Editor preview

但在模拟器和手机中我看到:

Emulator preview

有我的xml:

<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"

tools:context=".Profil"
android:background="@color/lightback"
android:orientation="vertical">


<FrameLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:id="@+id/testFragmentu2"
    android:layout_below="@+id/imageView"
    android:layout_centerHorizontal="true"

    android:translationZ="10dp"
    android:background="@android:color/transparent"></FrameLayout>

<FrameLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="175dp"
    android:id="@+id/testFragmentu"
    android:layout_below="@+id/imageView"
    android:layout_centerHorizontal="true"
    android:translationZ="0dp"

    android:background="@android:color/transparent"
    android:layout_marginTop="10dp"></FrameLayout>

<android.support.v4.widget.SwipeRefreshLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/swiperefresh"
    android:layout_width="match_parent"
    android:layout_height="150dp"

    android:translationZ="10dp"
    android:background="@android:color/transparent"
    android:layout_marginTop="10dp">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="right|top"
        android:background="@android:color/transparent">

        <TextView android:id="@id/android:empty"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:text="Niestety, wszyscy mają partnerów na siłownię... :(" />


        <ListView android:id="@id/android:list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:drawSelectorOnTop="false" />


    </LinearLayout>
</android.support.v4.widget.SwipeRefreshLayout>

我正在尝试创建3个片段。当我点击第三个片段的项目时,其中两个应该从顶部出现。但没有影子。我已设置translationZ但它不起作用...

1 个答案:

答案 0 :(得分:1)

对于阴影,您应该使用elevation,如下所示:

app:elevation="10dp"

而不是translationZ

正如在android docs中所提到的,elevation是&#34;视图的基础z深度&#34;这是一个静态变量,而translationZ是动态的。

  

高程

     

视图的基础z深度。

     

必须是维度值,这是一个浮点数,附加了一个单位,例如&#34; 14.5sp&#34;。

您应该使用translationZ制作动画。