Tagged Questions

164
votes
6answers
97k views

Standard Android Button with a different color

I'd like to change the color of a standard Android button slightly in order to better match a client's branding. For example, see the "Find a Table" button for the OpenTable application: The best ...
72
votes
7answers
13k views

Can The Android drawable directory contain subdirectories?

In the Android SDK documentation, all of the examples used with the @drawable/my_image xml syntax directly address images that are stored in the res/drawable directory in my project. I am wondering ...
42
votes
2answers
31k views

How to convert a Drawable to a Bitmap?

I would like to set a certain Drawable as the device's wallpaper, but all wallpaper functions accept Bitmaps only. I cannot use WallpaperManager because I'm pre 2.1. Also, my drawables are downloaded ...
18
votes
2answers
491 views

Are there any Android Drawable designers?

I would like to use more vector drawings in my Android applications. Providing images isn't as space efficient or as scalable as I would like it to be. Android provides a series of Drawable file ...
17
votes
3answers
1k views

Find out if resource is used

I am looking for an efficient way to find out if a resource (mostly a drawable) is used in java or in an XML file. The problem is, that on my current project the drawables are changed often and now I ...
13
votes
1answer
968 views

Android Drawable: layer-list repeat bitmap does not load when entirely covered

I have three full screen week views that are loaded at one time (previous, next, current). Each week view has 7 columns (one for each day of the week) with a drawable background. My drawable resource ...
12
votes
3answers
491 views

Tiled drawable sometimes stretches

I have a ListView whose items have a tiled background. To accomplish this, I use the following drawable xml: <bitmap xmlns:android="http://schemas.android.com/apk/res/android" ...
12
votes
2answers
33k views

Android : Customizing tabs on state : How do I make a selector a drawable

I know how to put the icon on each tab, that is no problem. I also ran across this : Stack Overflow thread on pretty much same thing I followed one of the links from that question, and found this ...
11
votes
6answers
7k views

@Android display /res/viewable in WebView

I am throwing HTML to a webview to render. In the HTML I need to load an image that I have in /res/drawable. I have /res/drawable/my_image.png and code such as this: final WebView browser = ...
10
votes
2answers
11k views

Drawable folders in res folder?

What is the difference between the three drawable folders in the res folder in the project hierarchy? If I have an image to put into a folder, which folder do I put it in?
8
votes
3answers
142 views

Android: Accessing images from assets/drawable folders

The app I am currently working on has hundreds of images. At the moment I store them in the 'Drawable' folder. I was thinking about moving all of them to Assets folder. My question is: Is there any ...
8
votes
1answer
297 views

Consequences of drawable.setCallback(null);

While trying to implement small in-memory cache of Drawables, I learned that to avoid memory leaks after closing activity I need to unbind those Drawables: set their callback to null. Because ...
8
votes
1answer
1k views

Android, Drawable.createFromStream(is, srcname): what's the 2nd parameter meaning?

Which is the meaning of the second parameter of Drawable.createFromStream() method? From Android APIs I only get: public static Drawable createFromStream (InputStream is, String srcName) Create a ...
8
votes
2answers
4k views

replace selector images programmatically

I have an ImageView that has a drawable image resource set to a selector. How do I programmatically access the selector and change the imgages of the highlighted and non-highlighted state? Here is a ...
7
votes
2answers
330 views

Is JPG really only acceptable for use in Android?

Android supports three image formats with this rating: PNG (preferred), JPG (acceptable) and GIF (discouraged). Source: ...
7
votes
1answer
3k views

how to create Drawable from Resource

I have one image stored in res/drawable/icon.png I need to set this Image to following function which accepts Drawable mButton.setCompoundDrawables() so how to convert Resource to Drawable? ...
7
votes
3answers
3k views

android animation is not finished in onAnimationEnd

It seems that an android animation is not truly finished when the onAnimationEnd event is fired although animation.hasEnded is set to true. I want my view to change it's background drawable on the ...
7
votes
5answers
3k views

Understanding the Use of ColorMatrix and ColorMatrixColorFilter to Modify a Drawable's Hue

I'm working on a UI for an app, and I'm attempting to use grayscale icons, and allow the user to change the theme to a color of their choosing. To do this, I'm trying to just apply a ColorFilter of ...
7
votes
2answers
4k views

Masking a Drawable/Bitmap on Android

I'm currently looking for a way to use a black and white bitmap to mask the alpha channel of another bitmap or Drawable on Android. I'm curious as to what the best way to do this is. I certainly ...
6
votes
2answers
157 views
6
votes
4answers
896 views

Only use XHDPI drawables in Android app?

If you're planning to support LDPI, MDPI, HPDI, and perhaps XHDPI in the near future, is it ok to only include XHDPI drawables in the project and let the devices scale them to their desired ...
6
votes
2answers
874 views

Gallery/AdapterView Child Drawable State

I am using a Gallery view where the view corresponding to each item is non-trivial and consists of text as well as multiple buttons. When I click to drag the gallery view (somewhere not on one of the ...
6
votes
5answers
3k views

How to use default Android drawables

What is the best approach when using default Android drawables? Should I use android.R.drawable or should I copy the drawables in my project and use R.drawable? Is there any risk, that in a newer ...
5
votes
1answer
131 views

*Any* way for linking Android /drawable graphics to /assets?

I am trying to support two Icon_Picker intents: org.adw.launcher.icons.ACTION_PICK_ICON and com.betterandroid.launcher2.icons.PICK_ICON_ACTION Unfortunately ADW, Go Launcher and LP look for ...
5
votes
1answer
555 views

Custom Home Icon in Action Bar Sherlock

I am trying to set custom icon for home icon using ActionBarSherlock library. I have tried to set custom layout using abHomeLayout attribute in my custom theme. But it didn't work for me. Only way, ...
5
votes
5answers
1k views

How to support all the different resolutions of android products

All the different resolutions of the different Android products are driving me nuts. My first android app that I wrote was designed so it supported the three commonly used resolutions: 240x320 ...
5
votes
1answer
419 views

How do I change the color and/or drawable of the TabWidget divider in Android?

I'm using a TabLayout and I have custom images for the tabs that I am using, but for the life of me I can't figure out how to change the color or even the image of the divider between the tabs and the ...
5
votes
2answers
3k views

android RadioButton button drawable gravity

I am generating RadioButtons dynamically with RadioButton radioButton=new RadioButton(context); LayoutParams layoutParams=new LayoutParams(radioWidth,radioHeight); ...
5
votes
2answers
2k views

Drawing multiple shapes with ShapeDrawable in xml with Android

I am currently drawing a number of circles on a canvas in a custom view in code. the circles are static and do not change. I would like to draw them using a ShapeDrawable in xml to help clean up my ...
5
votes
8answers
7k views

How to add XML drawable in Eclipse

Ok guys I'm little stacked here. According to official documentation Google says that "Once you've defined your Drawable in XML, save the file in the res/drawable/ directory of your project." is the ...
5
votes
2answers
8k views

Android vertical line xml

I'm trying to figure out how to define a verical line (1px thick) to be used as a drawable. to make a horizontal one, it's pretty straightforward: <shape ...
4
votes
1answer
163 views

Glossy gradient with android drawable xml

I'm trying to bring out a glossy xml drawable gradient as a background to a layout. I am already using the start color and end color boring linear gradient. <item> <shape> ...
4
votes
1answer
156 views

Drawing to a canvas using a custom method?

I'm coding for an android 2-D game and I'm having some trouble. Currently, in my package, I have a thread which draws on an instance of a canvas. I'm drawing Drawable bitmaps from resources. What I ...
4
votes
2answers
1k views

AnimationDrawable not playing

So I want my animation to start as soon as the activity is created, but for some reason no matter what I try will get it to start. I can get it to start by having a click event but I want it to start ...
4
votes
2answers
1k views

How can I alias an android bitmap to a drawable from another size (drawable-large-mdpi aliases to drawable-hdpi)

I'm working on adding support for tablet sized screens to my apps. I already have images in drawable-mdpi and drawable-hdpi for different density screens. My problem is with tablets like the Galaxy 7" ...
4
votes
5answers
1k views

Android: drawable resolutions

I've been through this post (and others) as well as through the documentation about supporting different screen resolutions in Android, but I couldn't find a clear answer to a (simple) question: Is ...
4
votes
1answer
3k views

Opacity on a background Drawable image in View (using XML Layout)

I was just wondering if there was a way to change the opacity of the background image for a View (ie. TextView, etc.). I know that I can set the background image like this: ...
4
votes
4answers
2k views

Is it possible to load a drawable from the assets folder?

Can you load a drawable from a sub directory in the assets (not the drawable folder) folder?
4
votes
2answers
824 views

Localization and drawables

I want to localize an image by adding the folder res/drawable-hdpi-no, but I get an error stating "invalid resource directory name". What's up with this?
4
votes
1answer
582 views

Initializing SurfaceView with a Drawable

I'd like to open up a SurfaceView with a icon placed in the center of the screen when an application is first started. I'm evoking icon creation using an implementation of SurfaceHolder.Callback to ...
4
votes
2answers
280 views

Performance wise, what is typically better, using an image or a xml created shape as a drawable?

For example, if each row in a list had a background that was a gradient, would it be better to use a image of a gradient or to define that gradient in a shape drawable in xml? Is there is significant ...
4
votes
1answer
216 views

Avoiding duplicate resources in android project

I have some images in my drawable folder and they have landscape versions in drawable-land. However I want some of the landscape images to be shared, as it seems a waste to duplicate the file with a ...
4
votes
2answers
8k views

How do I set the rounded corner radius of a color drawable using xml?

On the android website, there is a section about color drawables. Defining these drawables in xml looks like this: <resources> <drawable name="solid_red">#f00</drawable> ...
3
votes
3answers
52 views

OpenGL and 9patch drawables

I'm making a brickbreaker game in android with opengl, and I decided I'd wish to use 9patch drawables, so for example a brick could scale up to be wider or taller easilly. Is this possible? Also, I ...
3
votes
1answer
58 views

Finding the dominant color of an image in an Android @drawable

You can understand why I'm trying to find the dominant color in an image if you use Windows 7. When your mouse over a program in the taskbar, the background of that particular program changes based ...
3
votes
4answers
126 views

Avoid Multiple Drawable Sets (hdpi/mdpi/ldpi)

Is there a way to avoid having multiple sets of drawables per resolution? I have close to 50 images (simple icons mostly, not using anything needing 9-patch), seems like a lot of redundant work to ...
3
votes
1answer
81 views

How to handle lots of drawables

I am developing a game, where I use lots of drawables. The "drawable" catalog hold over 10MB memory ( about 900 of drawables ). At the beggining of each game level I am loading the array of drawables ...
3
votes
1answer
79 views

How do I draw an image from drawable onto an imageview with Canvas - Android

I have an activity which has an ImageView in it. What I want to do is be able to draw where the user touches that Imageview with an image from the drawable folder. I've read that the best way is to ...
3
votes
2answers
96 views

Handling Loading Images From URL

I have this code that pulls an image from an url and displays it within the app. Drawable drawableTest = LoadImageFromWeb("http://www.someimageurl"); imgView.setImageDrawable(drawableTest); ...
3
votes
1answer
584 views

Android + setDividerDrawable on a LinearLayout?

I'm interested in adding dividers to a LinearLayout's children dynamically. I see in the docs that LinearLayout contains a CONST "SHOW_DIVIDER_MIDDLE" along with get and set divider methods. Can ...

1 2 3 4 5 12