The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
11 views

Bitmap not getting from 9 patch image Drawable , Also want its Height-width

i have create Bitmap from Drawable recieve_btn.9 patch image BitmapDrawable mimage =(BitmapDrawable) getResources().getDrawable(R.drawable.recieve_btn); Error log like ...
0
votes
1answer
29 views

Save an Image in app folder

I'm new in Android development and I have an app that saves a 'jogador' (player) record with some attributes (name, birthday...) and a photo. When the user picks the image from gallery, I populate an ...
0
votes
0answers
6 views

Android: Banding on gradient background for navigation bar. setDither not working

For some reason I can't get the background of my navbar to render smoothly. What am I doing wrong here? Here is my main activity xml file: <RelativeLayout ...
0
votes
1answer
11 views

Gradient relative to screen size

Suppose that I have a drawable .xml like this: <?xml version="1.0" encoding="utf-8"?> <gradient android:centerX="0.5" android:centerY="0.5" android:endColor="#ff2222bb" ...
0
votes
2answers
24 views

Loading image to ImageView and having it occupy certain space

I have an image that is say 45 by 45 pixel and I have it scaled appropriately in the 3 different drawable folder. Now when just load it on the screen it looks bigger than I want. If I want it to be ...
0
votes
1answer
26 views

Change Background color item of ListView while maintaining effect of custom Drawable

I try to change the background color at specific item within my ListView, while maintaining the effect of the custom Drawable. My custom list_items : <TextView ...
5
votes
0answers
185 views
+100

Building a 9 patch drawable at runtime

I am successfully building a 9patch drawable at runtime on Android 3.0+ using the excellent gist provided by Brian Griffey (found here). Essentially I load the raw (no patches) graphic file from the ...
0
votes
0answers
18 views

Android Overlaying images in layer-list

I am trying to create a custom drawable which includes a 9-patch background image (named custom_bg below) and a regular png image (accordion_up). The latter should not be scaled. I tried several ...
0
votes
1answer
28 views

Insert Drawable shape to View

I would like to send each time different Drawable shape to view and then add it to my activity. The problem is I can't find a way to add the drawable shape into the canvas when I'm overriding the ...
0
votes
2answers
33 views

Get resource identifier (resId) of multiple images from asset or raw folder to an int array

I have 100+ images to load into a listView, and I am trying to store all the resId into an int[]. I can done it from drawable by using the below code Field[] ID_Fields = R.drawable.class.getFields(); ...
0
votes
1answer
24 views

Draw a shape over a view

I have an activity with several ListViews in it. I need a rectangle with transparent background that overlaps some of the ListViews and I got lost a little. I have some drawing coordinates that are ...
1
vote
1answer
51 views

SIGSEGV when setting backgroundDrawable for each element in ListView

I want to set something I have drawn on canvas as background of each element displayed in ListView. The drawing depends on the contents of the element and must be on Canvas, that's why I can not set ...
0
votes
1answer
22 views

Android tiled image with beginning and end

I'd like to do something like this: The closest I got was with a layer list, which aligns the left image to the left, the right to the right, and sets the center image to repeat itself. ...
0
votes
1answer
36 views

Android ListView divider doesn't move when it's tiled bitmap

I'm trying to use a repeating image as a divider for a ListView. First I define an bitmap drawable for the background like this: <bitmap xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
1answer
69 views

Weird Startup Crash On Android Using A Drawable xml

I have this strange issue where if I try to assign a Drawable xml file to a layout file, then the application crashes. But if i use a standard color code instead, it works fine. Note. I am pretty ...
0
votes
0answers
21 views

Android adding shadows to text -

I am using a StateList to define text color for a set of RadioButtons and wanted to also add a shadow to that text. I have it styled as follows: <style name="cst_button"> <item ...
0
votes
0answers
27 views

How important is to reuse background drawables?

I have many buttons on screen at a time, each one has a background Drawable that I create on the fly. There are 7 types of backgrounds to choose from. I am wondering if I should implement a reuse map ...
0
votes
1answer
36 views

do drawables need to be recycled?

In my activity I have final ImageView img = (ImageView) findViewById(R.id.myimage); img.setImageDrawable(getdrawable()); //getdrawable() is my own function which returns a drawable Then this line ...
0
votes
1answer
13 views

Apply many color filters to the same drawable

I want to apply several color filters in chain to a drawable. Is that possible? Or maybe to create a filter that is the combination of the filters I want to apply. For example, I would like: ...
0
votes
0answers
49 views

Out of memory error whan loading images to memory

I am loading multiple images into my app. I have to load them all to use my animation. ArrayList<AnimationsCls> animArr = new ArrayList<AnimationsCls>(); for (int i = 0; i < ...
0
votes
0answers
18 views

Is there an easy way in eclipse to edit one version of icon and reflect the changes for all resolutions (hdpi, mdpi, xhdpi et al) at once ?

While working on Android projects I sometimes feel the need for editing my icons to cope up with the changes in theme and or background of activity / view that is going to hold it. The way I do it ...
1
vote
0answers
50 views

How to set progressDrawable to a RatingBar dynamically using LayerDrawable

I want to set progressDrawable to a RatingBar. I was able to do this using (layer-list) via xml. Here is my layout .... <RatingBar android:layout_width="wrap_content" ...
1
vote
0answers
31 views

Android: drawable resource from earlier API level

Is there a way in Android to use a drawable resource from an earlier Android version / API level then the one of the current project? More specifically, is there a way to access it in the project ...
0
votes
1answer
44 views

How build a vertical divider

I have the following divider and I wanted do the same effect but in vertical. How could I do this? <?xml version="1.0" encoding="utf-8"?> <layer-list ...
0
votes
2answers
37 views

How to get a Drawable instance in class that extends BaseAdapter

I'm new to android and i'm to instantiate a Drawable reference. If the class extends Activity we could directly use this.. Drawable myDrawable = getResources().getDrawable(R.drawable.image1); ...
1
vote
2answers
41 views

apk size is too big due to adding images in all drawable folders android

In my application, there are lots of images, which are not just small button background images, but full screen size images also in my application. Due to adding all different sizes images in all 4 ...
1
vote
2answers
53 views

Change button's drawableLeft when the button is clicked

I have a Button with a drawableLeftand when i click on it i want to change only the drawableleft for another image. What java code i have to use? XML: <Button ...
0
votes
0answers
22 views

Android: how to set shape drawable height in percentage?

In my application there are more than one components with different height which do have same gradient background(I have used multiple shapes and gradient item in layer-list). but in item tag i have ...
0
votes
1answer
30 views

How to load a picture from the resource and html into webview?

I want that the webview display the picture from the resource and html code from the database but only the html code from the database works fine. WebView wv = (WebView) findViewById(R.id.wv); String ...
0
votes
1answer
45 views

Detect keyboard in android

I have an android application which contain list of installed applications and launch them on item click.In my application I used Intent.ACTION_CLOSE_SYSTEM_DIALOG broadcast for closing system dialogs ...
4
votes
3answers
37 views

Android design approch clarification [closed]

I am working on an android application.I have to make my application compatible for all the device.I know two ways to this. That are Create separete layouts for devices and tabs.for example ...
-1
votes
3answers
178 views

Setting drawable folder to use for different resolutions

I have 4 different sizes for each of the icons I need to use in my app. The problem is My Nexus 7 (1280 x 800) and galaxy s2 (800 x 480) seem to use the resources in drawable-hdpi. How do I force the ...
0
votes
2answers
25 views

Android drawable stops being reachable

The is a weird one: Ref Drawable image = getResources().getDrawable(R.drawable.mypic); At first everything was running fine, except the image (which I draw) was missing some shade. So I edit my ...
0
votes
0answers
28 views

Android Performance XML Drawable vs CSS3 vs Images

So I'm trying to create some custom toggle buttons in my Android App. And I want them to look like the following: In this image 75, 39, and A-Z are in the "Off" state and 37 is in the "On" state. ...
0
votes
2answers
68 views

Trying to change the color of a shape used in textView background

I have a drawable oval defined in xml with a white background. I am setting this circle as the background resource of my textView inside my gridAdapter. I want to change the color of the drawable ...
0
votes
0answers
45 views

Drawable selector for context menu item

How can I in Java code or in XML menu definition, highlight pressed button in context menu with my custom drawable selector, such as in ListView is: <ListView ...
2
votes
1answer
73 views

Drawables pulled from wrong resource folder on rotation

Pulling my hair out here. So I'm working with an application that has several types of drawables, and I have them in a structure like so: res/ //Portrait resources drawable-mdpi/ ...
0
votes
2answers
34 views

Why would a color state list file not be recognized by android?

I want to have a Text-Button which can be highlighted when pressed and it will have an empty background. (Basically like a link in a browser) I used a button for this. The following code works as i ...
1
vote
1answer
62 views

Drawable assets blown up on HTC DNA

I ran my app on the htc dna. I observed that my icons in the action bar are HUGE and don't even fit on it. I had 3 buckets for my drawables : mdpi, hdpi, xhdpi. I tried creating a xxhdpi bucket and ...
0
votes
0answers
32 views

Can I make an alias for a bitmap drawable in Android?

I have defined a bitmap in /drawable/app_background_raw as such: <?xml version="1.0" encoding="utf-8"?> <bitmap xmlns:android="http://schemas.android.com/apk/res/android" ...
3
votes
1answer
35 views

Android: Remove seperator color in Reflection Drawable

I just want to make a mirror reflection for my logo image. So I used the following code. public Bitmap applyReflection(Drawable drawable) { Bitmap originalImage = ...
0
votes
2answers
88 views

How to set a drawable to a TextView's text?

Short question: Suppose I have a TextView, and I wish that the text itself (not the backround) will have a drawable set to it (and not just a solid color), how should I do it? The only solution I've ...
0
votes
2answers
32 views

Resize image on QVGA screens

I have an app with a login screen. On that screen, I have de company logo. First I made one layout folder and one drawable folder. I tested and all worked ok. Then I have added the 4 layout folders ...
0
votes
0answers
79 views

android: create a drawable using image pattern and radius and stroke

Is that possible to create a drawable using image pattern and radius and stroke like this Image : this is my code but it's not working: <?xml version="1.0" encoding="utf-8"?> <layer-list ...
1
vote
1answer
87 views

Creating Dynamic R.drawable source and ImageView

I have an Activity which has variable position that comes from another activity. I handle this variable with Intent like below. (Actually position is listView's position from another activity.) and ...
0
votes
0answers
25 views

Android drawable animation

I have to show 30 images one bye one by using frame animation . Each image will be shown for 200ms. But after completion i want to show the last image. But the animation is being repeated. How do i ...
0
votes
2answers
57 views

Android: FileNotFoundException on an image in drawable

I'm trying to use this code that I've seen on multiple posts throughout stackoverflow public static Bitmap loadBitmap(Context context, String filename) throws IOException { ...
0
votes
2answers
60 views

Button drawableBottom Nexus 7 and Galaxy Tab 2

I am adapting an application written for a Galaxy Tab 2 (10".1) screen size to a Nexus 7 (7"). Following the suggestions here in stackoverflow I created different image sizes for all densities ...
0
votes
1answer
78 views

Trying to space items in a ListView while using adapter and drawable. Margin is not working

I am trying to have a listview where items have rounded corners and the items are spaced out from each other. This is done using a custom ArrayAdapter. MyCustomAdapter arrAdapter = new ...
0
votes
0answers
141 views

resolveUri failed on bad bitmap uri

I am retrieving data from my MYSQL database using JSON everything works fine but am trying to retrieve the image for each product and view it along with its title in a list view but I keep getting ...

1 2 3 4