我的应用中包含5个背景图片。如何制作,以便用户可以从5种选择中更改背景图像?
答案 0 :(得分:1)
您没有指定问题,但我仍会尝试提供帮助。 我认为您的问题无法设置背景。
Android上的每个视图都支持自定义背景。您可以在XML中静态设置它:
<LinearLayout
android:layout_width = "fill_parent"
android:layout_height = "fill_parent"
android:background = "@drawable/bck"
></LinearLayout>
或以编程方式:
View v = findViewById(R.id.a_view);
v.setBackground(R.drawable.bck);