更改背景我有我的應用程序註釋活動佈局圓角繪製背景(layout_bg_round_corners):安卓的繪製
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/deep_orange"/>
<corners android:radius="20dip"/>
<padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />
</shape>
提拉閃耀的通過爲白色背景。相反,我希望他們是黑人。
如何設置drawable的背景顏色?
這是我如何設定父視圖的佈局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/layout_bg_round_corners"
你意味着可繪製父視圖的背景?只需將該視圖的背景顏色設置爲黑色即可:android:background =「#000000」 – mjp66
因爲您必須將drawables父視圖設置爲drawable,所以您不能獲得圓角,並且整個視圖也會變黑。 – Simon
然後,可繪製的圖層列表聽起來像是一個計劃。我會張貼一個樣本。 – mjp66