Android Drawable Image not Showing

孤街醉人 提交于 2019-12-02 05:18:33

问题


I am trying to programically set the background of my app with an image in my drawable-hdpi folder. It is only seeing the default ic_launcher file in R.drawable so when I go to set the background, its simply unexistant. I am using this class as a fragment class with a swipe menu so maybe that has something to do with it.

EDIT: I was able to set the background in my xml file, but I couldn't set the background in my oncreateview method.

public class inputClass extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {

    View rootView = inflater.inflate(R.layout.input_xml, container, false);

    rootView.setBackgroundResource(R.drawable.hidden);


    return rootView;
}

回答1:


The problem is that your drawable image file is only available drawable-hdpi folder. In order to set the background properly, you can do two following ways.

  1. You should place your image file to all drawable directories. I mean you should put that image into drawable-ldpi, drawable-mdpi and so on. Also you should be careful about the size of the image because each folder corresponds to screen sizes. Please check out this API Guide

  2. Second way is the alternative for the first one. Create a directory within res/ folder and name it as drawable and then move your image file from drawable-hdpi to drawable.

Then, clean the project and relaunch.

Hope this may help.




回答2:


If you extend your activity from Activity, then using android:src instead of app:srcCompat.

This is solved a problem in my case.



来源:https://stackoverflow.com/questions/25828260/android-drawable-image-not-showing

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!