我想在圖像頂部添加透明黑色並使其更暗。使ImageView具有黑暗的透明度
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/rest_image"
android:layout_width="match_parent"
android:layout_height="150dp"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
/>
</RelativeLayout>
我可以設置阿爾法參數,但顏色變化爲白色。 我想製作像這樣的較暗的圖像。 如何在xml或Java代碼中執行此操作。我會根據情況設置它。?
謝謝。
您可以創建一個較暗的「形狀」,並用作「FrameLayout」的背景。 –
或者你可以谷歌'android colormatrix darken' –