i have 开发者_如何转开发an image view, when the image loads i want to make an action, for example an alert.I\'m using eventListener method to implement this.
I have a gridview using an image adapter for the elements, it\'s implemented like in this example: http://developer.android.com/resources/tutorials/views/hello-gridview.html
I have a ListView where each item can have up to 10 icons. If I scro开发者_如何学JAVAll the ListView up and down, I get a force-close, saying Bitmap size exceeds VM Budget, and that I\'m out of Memory
I\'m newbie in Android. I would like to know if it\'s possible to put a button or another compon开发者_Go百科ent over an ImageView. I\'ve tried setting the image as a background image of a LinearLayo
I want to create a deck of cards. I have a view called Deck (class Deck extends View) which I have set as the ContentView and I want to add the cards as ImageViews on the Deck, dynamically. I have sea
I am new in Android. I want to store my bitmap in sharedPreferences. Can anyone tell me how it will possible? Actually my requirements is, I fetch the image from gallery as well as take picture from c
Before I tried this ,Store image in R.drawable folder .. Bitmap b = BitmapFactory.decodeResource(getResources(), R.drawable.image1);
I have set an image to an ImageView control in android: iv.setImageResource(R.drawable.image1); 开发者_StackOverflow
I want to take photos from gallery and set it in my ImageView as 开发者_StackOverflow社区well as I want to take photo from camera and set it into my same Image View.
I thought it should be the easiest task in the world, but it turned out to be much more complicated than I thought.