0
我想顯示像陰影效果的3D圖像,請幫助我如何將陰影效果追加到android中的imageview?
我想顯示像陰影效果的3D圖像,請幫助我如何將陰影效果追加到android中的imageview?
在res - > drawable文件夾下創建一個xml佈局文件。讓我們將它命名爲「image_shadow.xml」,然後將下面的代碼複製到它。
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<shape
android:shape="rectangle">
<solid android:color="@android:color/darker_gray" />
<corners android:radius="0dp"/>
</shape>
</item>
<item android:right="1dp" android:bottom="2dp">
<shape
android:shape="rectangle">
<solid android:color="@android:color/white"/>
<corners android:radius="1dp"/>
</shape>
</item>
</layer-list>
然後在您ImageView
作爲
android:background="@drawable/image_shadow
希望它可以幫助你運用它。
感謝您的幫助 –
總是樂於助人。如果對你有幫助,請接受我的回答! – itzswan