我在我的应用程序中使用自定义背景。我正在寻找的是如何default drawable
从android.R
. 这是因为如果用户选择白色或深色背景,我不想使用自定义图像,而是使用例如:(@android:drawable/screen_background_light
因此,保存图像不会占用空间)。
如果我尝试发生import android.R.*
错误(那是因为我使用了另一个文件R
)。
我知道如何通过做 XML 来做到这一点android:background=@android:drawable/screen_background_light"
,但这是我现在想要做的。