代码之家  ›  专栏  ›  技术社区  ›  Mikhail Spitsin

相同的视图立面对于俯视图和俯视图看起来不同

  •  9
  • Mikhail Spitsin  · 技术社区  · 7 年前

    最近,我被一个问题惊呆了。在我的android手机上,具有相同标高的列表或滚动视图的元素具有与其位置相关的不同阴影。例如 屏幕底部的视图 有更多的黑暗和强大的阴影。以下是Google Keep应用程序的屏幕截图:

    If you will look at first card view and last one, you will see different shadows

    所以,我认为这正是因为谷歌Keep应用程序。也许谷歌的人决定在他们的应用程序中使用阴影。因此,我创建了一个示例应用程序。

    <?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:orientation="vertical">
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
        <TextView
            style="@style/AppButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="16dp"
            android:text="Test"/>
    
    </LinearLayout>
    

    我的风格:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
        <style name="AppButton">
            <item name="android:background">@color/colorAccent</item>
            <item name="android:elevation">4dp</item>
            <item name="android:gravity">center</item>
            <item name="android:padding">16dp</item>
            <item name="android:textColor">@android:color/white</item>
        </style>
    
    </resources>
    

    enter image description here

    如你所见,我们有相同的效果(俯视图有一个小阴影,俯视图有一个大阴影)。所以我的问题是:

    1. 它是在所有设备上发生还是仅在特定设备上发生?

    我有 Nexus 5X,安卓7.1.2 .

    值得一提的是,在Android Studio预览窗口中,一切都很好。每个视图都有相同的阴影。但在真正的设备上,你可以看到区别。

    1 回复  |  直到 7 年前
        1
  •  12
  •   Zielony    7 年前

    由高程API生成的阴影定位在三维空间中,这意味着每个阴影的外观不仅受其高程值的影响,还受阴影投射器在屏幕上的x和y位置的影响。这很像现实世界中的情况——光源下的物体投射的阴影比远处的物体要短。

    仔细看看你发布的第一张图片。左卡的左边缘和右卡的右边缘上的阴影比水平中心边缘上的阴影长。

    广告1。什么都没有。就是这样。

    广告2。不可能使用提升API。你可以自己画阴影。

    广告4.所有设备。

    Ad.UPD。编辑器中的阴影是静态的,因此您观察不到任何效果。

    enter image description here