0
私はこの質問を検索し、多くの回答が見つかっており、人々はそれらの回答が機能していると主張しています。しかし、私の場合は、これらの答えのどれも役立たない。私は、ツールバーで透明なグラデーションビューが必要なので、RecyclerView
をスクロールすると、そのグラデーションビューの下に表示されます。それも可能ですか? 私はこれをやってみました:Android:透明グラディエントビュー
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#e9e8e9"
android:endColor="#30ffffff"
android:angle="270"
>
</gradient>
これは、しかし、任意の透明性がありません。私も"@android:color/transparent"
を試しましたが、まだ運がありません。
<RelativeLayout
android:id="@+id/layout_button_category">
....
</RelativeLayout>
<View android:id="@+id/shadow"
android:layout_below="@+id/layout_button_category"
android:layout_width="match_parent"
android:layout_height="24dp"
android:dither="true"
android:background="@drawable/shadow"
xmlns:android="http://schemas.android.com/apk/res/android" />
</android.support.design.widget.AppBarLayout>
「ツールバー」に背景を設定しました –
でしたが、この図面は下にあるビューに適用されます。このビューは常に白い背景を持ちます。 – Sermilion