发布网友 发布时间:2022-05-25 13:49
共3个回答
热心网友 时间:2023-11-02 23:40
setBackgroundResource(R.drawable.***);
设置背景有多个api
设置Drawable
Resources resources = getContext().getResources();
Drawable btnDrawable = resources.getDrawable(R.drawable.layout_bg);
layout.setBackgroundDrawable(btnDrawable);
引用资源
layout.setBackgroundResource(R.drawable.layout_bg);
热心网友 时间:2023-11-02 23:40
android:background=热心网友 时间:2023-11-02 23:41
View view=LayoutInflate.from(context).inflate(R.layout.main,null);