Android: как создать точную тень для материала с помощью XML
Я хотел бы сделать файл для рисования XMl, максимально похожий на высоту дизайна материала, найденную на Lollipop и выше. В настоящее время у меня есть тень, которая даже близко не подходит, поскольку я понятия не имею, какой градиент я должен использовать.
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<gradient android:angle="90"
android:endColor="@android:color/darker_gray"
android:startColor="#ccc" />
<corners android:radius="0.1dp"
android:bottomLeftRadius="3dp"
android:bottomRightRadius="3dp"
android:topLeftRadius="3dp"
android:topRightRadius="3dp"/>
</shape>
</item>
<item
android:left="1.5dp"
android:right="1.5dp"
android:top="1.5dp"
android:bottom="1.5dp">
<shape android:shape="rectangle">
<solid android:color="@android:color/white" />
<corners
android:radius="0.1dp"
android:bottomLeftRadius="3dp"
android:bottomRightRadius="3dp"
android:topLeftRadius="3dp"
android:topRightRadius="3dp" />
</shape>
</item>
</layer-list>
Может кто-нибудь придумать решение, которое хотя бы лучше моего? Спасибо.
1 ответ
Вам необходимо определить высоту в файле ресурсов макета, чтобы отбрасывать тень. в вашем файле layout.xml это должно выглядеть примерно так
<TextView
android:id="@+id/myview"
android:elevation="2dp"
android:background="@drawable/myrect" />
Для идеальной тени используйте CardView
Xamarin: источник MSDN
Чтобы добавить пакет Xamarin.Android.Support.v7.CardView в Visual Studio
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/shrine_grid_item_margin"
android:orientation="vertical"
local:cardElevation="@dimen/cardview_default_elevation">
<!-- Content Goes here-->
</android.support.v7.widget.CardView>
Или
Android: Источник для разработчиков Android
Виджет CardView является частью библиотек поддержки v7. Чтобы использовать его в своем проекте, добавьте следующую зависимость в файл build.gradle вашего модуля приложения:
dependencies {
implementation 'com.android.support:cardview-v7:28.0.0'
}
XXX
<androidx.cardview.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/ProductEntry"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/shrine_grid_item_margin"
android:orientation="vertical"
app:cardElevation="@dimen/cardview_default_elevation">
<!-- Content Goes here-->
</androidx.cardview.widget.CardView>