Android :: Color Gray Resource Icons (especially Microphone)?
Nov 18, 2010
i'm currently developing an application for android. Therefore i want to create a microphone widget, like the one in googles Searchdialog. This icon is filled with white color, like a bargraph, depending on the recorded volume level. I already found the icon (ic_btn_speak_now.png) in the drawable ressources, delivered with the SDK. Unfortunately the icon isn't an simple shape with a transparent area for the microphone shape. Instead it consists of some different gray values. My question now is: How do the google developers (and others, where i've seen it) fill only the microphone shape of the icon with color?
View 3 Replies
Jul 9, 2012
SystemUI?! I've to change the clock color to a dark gray! You can mod downloading it as attachement!
View 2 Replies
View Related
May 6, 2010
I apologize if this has been asked, I have searched and not found an answer. I do not use contact photos so is there a way to remove the dull gray icons that are there by default?
View 4 Replies
View Related
Aug 17, 2010
I followed this tutorial to create a color state list for a particular Android view. I just want it to highlight when clicked so the user knows why the screen just changed.
When the view is rendered, I get the following error:
CODE:.........
My color XML (in res/color/viewcolor.xml):
CODE:..........................
My layout XML (in res/layout/myview.xml):
CODE:...............................
View 2 Replies
View Related
Oct 1, 2009
I want to change the background image of a button either into a resource drawable or a solid color.
findViewById(R.id.myView).setBackgroundResource( xyz == 0 ? R.drawable.myBackground :
instead of zero, i want some solid color...
View 3 Replies
View Related
Sep 21, 2010
I'm trying to use a color defined in a stlyle in a selector but it is causing a Resources$NotFoundException.
First I added a new attribute to attr.xml:
CODE:..........
Then I defined that attr value in styles.xml:
CODE:..........
Then I tried to use that attr in my selector definition:
CODE:................
Lastly, the activity uses the ThemeNoTitleBar style theme in the manifest.
I've also tried creating a color in colors.xml and having it use the new attr but that also fails.
I'm obviously missing something but am not sure what to do to fix it. My intent is to create multiple themes and have the selector use the color in the currently selected theme.
View 1 Replies
View Related
Sep 4, 2010
I'm going through an Android tutorial and I'm trying to access a color I've defined in colors.xml
<color name = "my_background">#3500ffff</color>
Then I'm trying to access this color by name:
Paint background = new Paint();
background.setColor(getResources().getColor(R.color.my_background));
but it doesn't recognize my_background as a resource. If I let the suggestions come up, only a bunch of pre-defined colors pop up that are unrelated. Any ideas? It doesn't make sense for me, I see almost the exact same thing from the developer documentation and another site, but it doesn't work for me.
View 1 Replies
View Related
Oct 29, 2010
Seems my original post ("ugly pngs...") somehow disappeared :( nvm.
I have a problem with a png resource that has gradient fade-out alpha.
The png looks great in the emulator, but displays an artefact known as "color banding" (http://en.wikipedia.org/wiki/Colour_banding)
Has anyone surpassed this issue ?
My designer wants to trop a shadow behind his icons, and that's where the bands appear.
What are my options ?
View 13 Replies
View Related
Jun 3, 2009
I've been trying to include standard android icons in a menu XML file, as described in Android Icon design guidelines. However the build fails with the following errors : [2009-06-04 00:00:31 - Laser] W/ResourceType(16578): Bad XML block: header size 2475 or total size 0 is larger than data size 0 [2009-06-04 00:00:31 - Laser] /home/niko/dev/workspace/Laser/res/menu/ main.xml:4: ERROR Error: Resource is not public. (at 'icon' with value '@android:drawable/ic_menu_play_clip'). [2009-06-04 00:00:31 - Laser] Unknown error: The only threads I could find with this error were about rebuilding android platform xml files. Any idea about what I could have missed?
View 5 Replies
View Related
Oct 27, 2010
Is there are a reason why android menu icons are always monochrome and not color? Is there any reason why i shouldn't use color menu icons?
View 4 Replies
View Related
Aug 18, 2010
Anybody have the stock Handcent icon or original droid messaging icon so I can change the Handcent icons color or replace it with the stock icon I use to use?
View 19 Replies
View Related
Sep 27, 2010
I am displaying a notification icon which is dark gray. It looks fine on Nexus One, where the notification area is light gray and is almost invisible on HTC Desire (Sense UI - dark gray notification bar). Is there a way to overcome that? (The icon cannot be changed).The icon cannot be changed meaning" that I am using a custom set of icons which is a must for me.
View 1 Replies
View Related
Aug 3, 2010
I have an XML resource file:
<resources> <section>
<category value="1" resourceId="@xml/categoryData1" />
<category value="2" resourceId="@xml/categoryData2" />
<category value="3" resourceId="@xml/categoryData3" />
</section> </resources>
Using XmlPullParser, on the START_TAG, I can use:
int value = parser.getAttributeIntValue(null, "value", 0);
to get values 1, 2, 3...however:
int resourceId = parser.getAttributeIntValue(null, "resourceId", 0);
doesn't work...it just yields the default value 0, or whatever I change the default value (3rd parameter) to be. Does anyone know what I am doing wrong or if this is possible?
View 1 Replies
View Related
Nov 27, 2010
for some reason, handcent, chomp and sense all have the gray text boxes and bar at the top. no matter what 'skin' or 'theme', the apps just don't have black. that's all i want. they're all fast enough and cool enough but none of them are all black. if anyone knows a setting i'm missing, please tell me. everything else on my evo is black.
View 1 Replies
View Related
Apr 20, 2009
My name is Peng Zhu. I am new to the Android platform. I have a question: "How can I gray out a toggle button?"
View 7 Replies
View Related
Jul 25, 2010
Works great the 5 percent of the time it does.Does anyone else get the "Cannot Process your request at this time" or just a grey screen with a picture of a phone, envelope, and data symbol at the top?How do I get it to show me my data all the time?
View 15 Replies
View Related
Sep 23, 2010
My application uses a list of media files on the phone, i.e. images, audio and video. It also allows the user to filter the list via some checkboxes in a menu, so the user can choose to show or hide each type of files. The way I've been doing this is by putting this in the adapter's getView():
// don't show unwanted file types if (cmo.hasType(MediaType.AUDIO_FILE)){
if(!prefs.getBoolean(PREFS_SHOWAUDIO, true)){ return new ViewStub(mContext);;
} }else if(cmo.hasType(MediaType.IMAGE_FILE)){ if(!prefs.getBoolean(PREFS_SHOWIMG, true)){
return new ViewStub(mContext);;
} }else if( cmo.hasType(MediaType.VIDEO_FILE)){ if(!prefs.getBoolean(PREFS_SHOWVIDEO, true)){ return new ViewStub(mContext);; } }
Which is quite effective in the sense that the list doesn't show those elements. However, the ListView still renders a 1px grey line between each View, even if they are ViewStubs, meaning I see a thick gray line whenever a group of consecutive items are filtered away. How can I get rid of those lines? Should I create a new data array, containing only the elements that should show a view?
View 1 Replies
View Related
Jan 12, 2010
I've got thumbnails which larger side is 70px (e.g 70x40 or 52x70).
I need to create a gray box 70x70px and put the thumbnail in it, so that image is aligned with the box at top vertically and center horizontally.
How to do that?
I've tried with an ImageView 70x70px, gray background, but image is not positioned as it should (it's in vertical and horizontal center, instead of vertical top and horizontal center).
I've also tried wrapping it with LinearLayout 70x70px, gray background and then positioning it, but then i get 1 or 2px line between LinearLayout and ImageView. I tried to set padding and margins to 0, but the gray line stays on...
View 2 Replies
View Related
Jun 17, 2010
I need to set alternate color in list view rows but when i do that it removes/ disables the on focus default yellow background
I tried with backgroundColor
rowView.setBackgroundColor(SOME COLOR);
also with backgrounddrwable.
CODE:.........
But it wont work. is there any way we can set background color and on focus color simultaneously which will work.
View 1 Replies
View Related
Apr 22, 2010
Is there any process to change the default text color white to "Black" and default selection color of android "orange" to "Blue" for whole project. i am using Eclipse for Android development.
View 3 Replies
View Related
May 23, 2009
1. I want to use my own color for selecting ui views.
By default, android shows the selected view with background as orange. I want to show the view background color as red.
2. In the same way, I want the same behaviour should be applied to whole application.
View 5 Replies
View Related
Mar 19, 2010
I have seen this example:
@*android:color/secondary_text_light
What's that * asterisk doing there? What is the difference when using or not?
View 1 Replies
View Related
Aug 16, 2010
How to customize the color of the CheckMark color in android in a dialog. Currently , By default, the color of the checkmark is green by default. I would like to customize it to a different color of choice
View 2 Replies
View Related
Jan 1, 2011
After I start my android application Google Map doesn't work. I've got API key from google, this key is written here:
android:apiKey="054LgZN0XlQIYy......
In the LogCat I've found this error : Couldn't get connection factory client.
I've created a new .keystore file and I've pasted the new MD5 fingerprint into my browser, but I got the same API key.
I'm using Google API Level 8 and emulator in the Eclipse.
I've got another API key, but nothing has changed.
View 4 Replies
View Related
Feb 18, 2010
In android, when I press on a TextView, the text changes color (from white to grey). how can I disable that functionality?
View 1 Replies
View Related
Nov 18, 2009
My Google calender has synced with no problems. The monthly view shows each day white and the days with appointments show what looks like a green slider. However one day, this past Monday is gray. I have looked at my main Google calender and there is nothing different for this day then other days through the month. I am able to click on the gray day on both the main calender and on the Droid and it will open up. Does anyone else have something like this?
View 1 Replies
View Related
Oct 15, 2010
My add button in menu doesnt work. It is gray and when I tried to click on it to add a widget it didnt do anything. IS there a way to unlock it or be able to access it? I wanted to add the battery widget and I cant....
View 1 Replies
View Related
Mar 15, 2010
Does anyone know of a way to change the dialer from the ugly gray?
View 2 Replies
View Related
May 4, 2010
Most of the time my 3G symbol is gray with gray up and down arrows. Is this supposed to be this way?
View 1 Replies
View Related
Jan 8, 2014
Tonight I was taking videos and a couple of pictures with my droid mini. I was also switching to the gallery to view what I was taking and everything was there. In the middle of the last video, the screen freezes and I had to power down because my phone was just frozen. When I powered back up, I saw just 5 gray squares where those last 5 pieces of media should have been. They were saved and viewable before this happened!! How can I open or get them back! I've read a few threads, but all the back up methods do not work. My phone is not rooted. I uploaded all my files into my computer, and they are simply not there. It's not a huge giant issue, because everything else remained as it was, but these were videos of me playing with my kid. They didn't even get backed up onto google plus yet. I did shoot a test video right after my phone came back on...and the gray squares are still there.
View 1 Replies
View Related