タイトルにあるように、CardView を ScrollView 内に配置しようとしていますが、CardView のエレベーション シャドウは親によってオフになっています...
これはレイアウト XML です。
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestScrollViewActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="128dp"
android:background="?colorPrimary"
android:gravity="bottom"
android:minHeight="?actionBarSize"/>
<ScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:clipToPadding="false"
android:paddingBottom="40dp"
android:paddingTop="60dp">
<android.support.v7.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="4dp"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="0dp">
<LinearLayout
android:layout_width="400dp"
android:layout_height="600dp"
android:orientation="vertical">
</LinearLayout>
</android.support.v7.widget.CardView>
</ScrollView>
</FrameLayout>
私が見つけた唯一の回避策は、親 ScrollView にパディングを追加するか、子 CardView にマージンを追加することです...
パディング/マージンを使用せずにこれを防ぐオプションはありますか?
ありがとう。
編集:
これは、親スクロール ビューにパディングを設定しない場合のレイアウトの外観です。左と右の影が切り取られていることがわかります。
ここで、パディングが親スクロールビューの側面に追加された場合、ここに見られるように影が正しく描画されています:
それで、ここでの私の主な質問は、これがそれを達成する唯一の方法ですか?それとも、子ビューを正しく描画できるようにするタグまたは構成が親ビューにありますか?