I am getting following exception at line 1414 from a fragment.
java.lang.IllegalStateException: Fragment HomeFragment{2104037} not attached to Activity
at android.support.v4.app.Fragment.getResources(Fragment.java:715)
at com.juarezserver.citystatus.fragment.HomeFragment.addMarker(HomeFragment.java:1414)
This is the piece of code involved:
if (tiporeporte.equals("1")){
int height = 75;
int width = 75;
BitmapDrawable bitmapdraw=(BitmapDrawable)getResources().getDrawable(R.drawable.tipo_1);//line 1414
Bitmap b=bitmapdraw.getBitmap();
Bitmap smallMarker = Bitmap.createScaledBitmap(b, width, height, false);
markerOptions.icon(BitmapDescriptorFactory.fromBitmap(smallMarker));
}
I don´t know what am I doing wrong.