[android-beginners] Re: Query : How to get the full path of the files under "res" folder of an Android App?

2009-08-27 Thread Israel Ferrer
The images goes into the apk. You have to put the images in the drawable folder from resource and if you want to use it: Drawable image= getResources().getDrawable(R.drawable.); or Bitmap b = BitmapFactory.decodeResource(getResources(),R.drawable.); El 27/08/2009, a las 23:02, Justin Anderson

[android-beginners] putExtra error on AppWidget

2009-05-20 Thread Israel Ferrer
Hi everyone. I am just making some AppWidget and I want to pass some Strings through UpdateView to an Activity. But the Bundle is null. I try this: -Widget.java Intent defineIntent = new Intent(context, Visor.class); defineIntent.putExtra ("org.rss.andro