Android: Background image resize on keyboard pop up

后端 未结 12 1071
伪装坚强ぢ
伪装坚强ぢ 2021-02-03 20:01

I am developing an application in which the background image get shrink on keyboard pop-up. My .xml is as follows :



        
12条回答
  •  萌比男神i
    2021-02-03 20:38

    Just use in your onCreate() this code:

    protected void onCreate(Bundle savedInstanceState) {
    ...   
     getWindow().setBackgroundDrawableResource(R.drawable.your_image_resource);
    ...
    }
    

    and eliminate this line in your xml:

    android:background="@drawable/background"
    

    Read more at:

    http://developer.android.com/reference/android/view/Window.html

提交回复
热议问题