Tagged Questions
164
votes
6answers
96k 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 ...
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 ...
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:
...
3
votes
2answers
331 views
How to reference a drawable from a library project into a main project's layout in android?
I have a android library project and reusable drawable resources in it.
Lets say package name is: com.vijay.mylib;
Then i have a main project and it uses the above library project.
Lets say its ...
2
votes
3answers
83 views
What happens if I leave all of my images in the drawable-hdpi folder?
I have all of my images in the drawable-hdpi folder. And I finished all of my layouts for all screen sizes. But i forgot to put the images in the drawable-mdpi folder and drawable-ldpi folder. If a ...
2
votes
1answer
216 views
Get Drawables out of RelativeLayout or Group Drawables
what I want to do is as following:
I have a set of Drawables (eg. 16) that I have to combine in different ways (Icon with 1, 2, 3 or 4 Drawables), depending on buisness logic. My idea was to define ...
2
votes
1answer
2k views
Can I use multiple shapes in one Android drawable?
What I'm trying to do is define a common background for use in a LinearLayout which frequents my application on many of its Activitys. This particular layout is a header that shows on the top of each ...
1
vote
1answer
144 views
Resize your image according to screen sizes?
I noticed that whenever I tested my app on my Droid X and Droid Bionic, the images where actually fine. But whenever I tested it on Larger devices such as Android Tablet. The image is kinda stretched. ...
1
vote
1answer
77 views
Android | How do I define the height and width of a 9-Patch PNG so it won't get pixelized
I have discovered the main idea of how to deal with regular PNG for Android.
Let's say I have created in my computer an icon the size of 60*120px. I know that for hdpi (800*480px) I need to divide it ...
1
vote
3answers
430 views
Why would a drawable inside a tab view not be visible?
I have a custom TabHost that adds tabs like this
private void setTab(View view, String tag, Intent intent)
{
View tabView = LayoutInflater.from(context).inflate(R.layout.tabs_bg, null);
TextView ...
1
vote
1answer
314 views
Apply 9-patch drawable to Button, keeping default padding
I'm attempting to customise the look of a Button using a 9-patch drawable with no padding defined within in (no pixels on the right or bottom inside the 9-patch editor).
Is there a simple way to ...
1
vote
2answers
518 views
ImageButton does not display an particular drawable
This is rather a funny problem I have ever come across:
I have a table layout with 9 image buttons, 3 per row. Every ImageButton has a different image associated with it. I have set the background of ...
1
vote
1answer
5k views
How do I create an ImageView in java code, within an existing Layout?
I'm looking for an easy way for the user to see how many drinks they've had for a BAC calculator.
PICTURE OF THE APP, for reference
On button press, I would like an image to be added to the screen, ...
0
votes
1answer
27 views
Dimensions of a custom view consisting of a shape drawable
I am pretty much following the sample found in: http://developer.android.com/guide/topics/graphics/2d-graphics.html#shape-drawable
public class CustomDrawableView extends View {
private ...
0
votes
1answer
38 views
Android-Creating resources for every screen density
I know that android will pick the resources from the corresponding folders in the res file but I cant remember which densities are what. Can some one point me towards a quick reference of how I should ...
0
votes
2answers
66 views
Error inflating animation resource
I read this example and I'm trying to use it. I put this in drawable folder as somth.xml:
<animation-list android:id="selected" android:oneshot="false">
<item ...
0
votes
4answers
116 views
Android EditText offset for the text?
I've created a background drawable for my EditText, but the text showed up IN the image border. I fixed this by setting 'scrollX to -12dip, and this seemed to word in Eclipse, in the graphical layout ...
0
votes
1answer
57 views
Android 1.5 w/ xml drawables
I am having an issue w/ a pretty basic login screen. It does have a view flipper and relative layouts, both supported since API 1 as far as I can tell. Getting the following error :
08-23 ...
0
votes
1answer
276 views
Drawable shape not showing when used in combination with android:drawableBottom attribute.
XML file saved at res/drawable/gradient_box.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
...
0
votes
1answer
111 views
android:background="@drawable/XXXX is ignored for a button in main.xml
I have tried copying several different examples, used shape layouts, tried images, etc. No matter what I do, it is a though the the background drawable is simply ignored. I intentionally put an error ...
0
votes
3answers
566 views
xhdpi scales images
I need explanations.
I develop an application running for Honeycomb on a tablet 10.1.
I set an image 796x1228 pixel in drawable-xhdpi folder. When this image is called directly it displayed on 1/4 of ...