如何更改应用程序的背景?

时间:2017-02-24 14:05:15

标签: java android-studio

有没有办法直接在应用中更改背景? (!不是主屏壁纸)

2 个答案:

答案 0 :(得分:1)

您需要指定其背景将被更改的布局。我猜你有一个LinearLayout,所以在布局中添加一个id(如果它不存在):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id=@+id/parentLayout>  

然后,您可以使用以下命令更改Java中的背景:

LinearLayout linearLayout = (LinearLayout) findViewById(R.id.parentLayout);
linearLayout.setBackgroundResource(R.drawable.new_background);

希望它可以帮到你!

答案 1 :(得分:0)

我有一个链接,你很容易更改后台应用程序。 尝试类似https://www.youtube.com/watch?v=mDKuWIlSNJE

的内容