A theme is a style applied to an entire Android application or Activity, rather than an individual View. When a style is applied as a theme, every View in the Activity or application will apply each style property that it supports.
0
votes
1answer
23 views
Use Holo light theme/style on gingerbread
I am currently creating an application for a client. I love the Holo light with dark action bar theme/style but that means that I would have to use API 14 and above. If I set the min API level to 14 ...
0
votes
1answer
18 views
android:style value not found error in eclipse
I have the following line of code in my manifest.xml
android:theme="@android:style/Theme.Holo.Light"
I have developed my app primarily using AIDE, and in AIDE, this line runs fine(compiles and ...
3
votes
2answers
32 views
Android themes trouble implementing the simplest: custom per theme color
I'm a beginner in Android development and, although coding makes perfect sence, android themes IMHO don't
I have trouble implementing this simple task:
I have (for example) a color named "blah"
...
1
vote
0answers
33 views
Styles and themes on values, values-v11 and values-v14 folders
I am currently working on my app to base its design on the Holo theme. Globally what I want to do is working but I am a little confused about the way that are working the folders values, values-v11 ...
0
votes
1answer
77 views
+50
How to use ActionBarSherlock with AlertDialog.Builder and a Light theme?
Well as the title says, i'm using the actionBarSherlock library and a light theme, and sometimes I need to show a dialog using the alertDialog.Builder class.
Thing is, no matter what I try, the theme ...
1
vote
1answer
29 views
RingtonePreference Theme
Im creating an Android App, totaly in Holo.Light Theme.
All the preferences are light, except for the Ringtonepreference!
I have even tried setting the BGColor and the textColor in the ...
0
votes
2answers
36 views
setting custom style attribute for ActionBarSherlock navigation tabs breaks default theme
I'm trying to customize the navigation tabs in my ActionBarSherlock. If I simply set the background for the navigation tabs, the existing text styles for the tabs is lost. The text shrinks and is ...
0
votes
2answers
42 views
Get rid of blue line
With the help of ActionBarSherlock I try to get my app running on pre 3.0 devices. There is a blue divider in the action bar, which I want to have removed.
I figured out that it isn't a divider, ...
0
votes
0answers
22 views
How to change some widget style not app theme?
style.xml
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="DarkSherlockTheme" parent="Theme.Sherlock" />
<style name="LightSherlockTheme" ...
0
votes
1answer
14 views
Android Theme Background applies also to title bar
I am designing an andriod theme in which I want to change the background of all the activities. I am using the following code:
<style name="MyCustomTheme" parent="android:Theme.Holo">
...
0
votes
0answers
21 views
Reuse assets/ressources from “theme application” into my application
I just made some research on the web and I did not found anything on the subject.
I am currently developing a launcher application. One of the most requested feature is to be able to customize the ...
0
votes
0answers
21 views
Make Android Base Theme Public
I'm having an issue with the DatePicker component, i have a custom datepicker that extends DatePicker and i change font size, text color and the selected text font are bold, the problem is that it ...
4
votes
2answers
86 views
Show title bar from code
In the manifest file I have this line to my application tag
android:theme="@android:style/Theme.NoTitleBar"
and basically every activity doesn't have a title bar, but for one of the activities I ...
0
votes
1answer
52 views
Color of highlight/pressed state of dialog button after custom theming?
I used this to generate a custom theme for my application (basically just a nice green instead of the default blue)
I have a CheckBox in my app, and it has the green hue applied. I also have ...
0
votes
0answers
23 views
Ecplise messing with Holo Theme
In my Eclipse I have all the themes working properly but not the Holo one (see picture)
Why? What's happened and which files should I fix?
1
vote
0answers
85 views
AlertDialog styling - how to change style (color) of title, message, etc
I've breaking my head over this quite a bit. What I need to do is, change the style of all AlertDialogs in my android application - dialog background needs to be white-ish, and text needs to be ...
0
votes
6answers
66 views
How to finish() MainActivity from Activity3
I'm developing an application in which I have a MainActivity, on that I have a button which calls Activity1(the theme of this activity is set to dialog i.e. ...
0
votes
3answers
271 views
Android - want to show 3-dots menu on ICS
I want to show the 3-dot overflow menu key (next to the RecentApp virtual key) when building my app with
android:targetSdkVersion="15"
Here is my story. My app includes two lib projects (only jars ...
1
vote
0answers
30 views
Loading a theme a file at run time in android
I am trying to use custom themes for my app. I am using ActionBarSherlock themes and the app can already use multiple themes that the app has been compiled with.
I would like to know how is it ...
1
vote
3answers
261 views
Android HoloEverywhere: No top ActionBar/TitleBar on default Holo.Theme issue
I'm using HoloEverywhere port for my app and I have this really weird issue: on Gingerbread the default Holo.Theme doesn't show the top ActionBar/TitleBar on any of the activity (yes I did go over all ...
1
vote
1answer
70 views
My action bar title is taking the wrong color from theme
I'm attempting to modify the theme for my application. I've been able to successfully set the background color for my app, and the background color for my action bar.
Unfortunately, the background ...
1
vote
1answer
267 views
Android HoloEverywhere: mChildFragmentManager cannot be resolved to a variable
I followed this closely and successfully added ActionBarSherlock lib to both my project and HoloEverywhere. However when I built the HoloEverywhere library I got these errors:
In ...
2
votes
1answer
50 views
Holo Theme Backwards Compatibility for Action Bar tabs
I am currently working on an application using the Holo theme and am targeting the minSdkVersion = 9. I have an action bar with tabs throughout the entire application that work from version 11+ and am ...
0
votes
0answers
92 views
Android How to change TimePicker theme?
Currently using Theme.Sherlock theme for my application. Is that possible to change theme for TimePicker widget. I want to change the blue divider to green, and the white text to black.
I did not ...
1
vote
2answers
57 views
how to start android phone with custom launcher
I want to create theme, for that i created one launcher app. So when i press "home" button it shows me to select which launcher to be launch.
But I don't want that selection UI, When my app is ...
0
votes
2answers
75 views
Android, How to theme font colour for just TextView Widgets?
I have just applied a black background image in my theme using
<style name="AppBaseTheme" parent="Theme.Sherlock.Light">
</style>
<!-- Application theme. -->
<style ...
0
votes
0answers
93 views
Android ActionBar has border when using Nine-Patch background
I'm using a nine-patch png as the windowBackground for an Android app. However, I get a 1px border around the ActionBar. This doesn't happen when I use a simple png.
To test this, I've created a ...
0
votes
2answers
63 views
Android DeviceDefault Switch button
I need to get the device default Switch (Api lvl 14) button. I already have Switch buttons in my app, but I want them to look like the DEVICE default Switch buttons, not like those from Android. How ...
1
vote
1answer
63 views
How to make Android style windowBackground accommodate action bar
I'm trying to have a style with a background image in the top right of the screen. I have this working with
my_theme_background.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list ...
0
votes
2answers
95 views
How to set toast style as a theme?
I want to change all toasts in my App by editing themes.xml.
I am using <item name="buttonStyle">@style/MyButton</item> to change my buttons, is there something similar with Toasts, or ...
1
vote
2answers
281 views
android: set background color for the entire screen dynamically, or how to set actionbar to overlay layout, but not overlap content
My app uses the Theme.Wallpaper family, which means the current wallpaper is used as the app's background.
This may cause readability issues (depending on the user's favorite wallpaper) so I want to ...
1
vote
1answer
63 views
Why is my Holo Light app blurry and blown up?
I am just learning to program Android apps and am using Netbeans. My main.xml looks like this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
1
vote
0answers
464 views
How to hide System Bar and show the System Bar in android(4.1.1)
I need to show and hide the system bar in my application,hence I used two buttons for that. I used to test for both Android(3.0.1) and Android(4.1.1) devices. For android(3.0.1), I am able to hide and ...
1
vote
0answers
24 views
Android:Changing layout theme where saved?
I have two issues:
1 When i use to develop android application on eclipse i remarked that in layout editor there is the ability to change the theme,but i can't to figure out where these modifications ...
2
votes
1answer
76 views
Change only one state (the default state) of an ImageButton background
I'd like to change the background for an image button. Basically the image I have looks great on a transparent background and a bit lousy when there are a bunch of them all with a non-transparent ...
0
votes
1answer
119 views
Fatal Exception when add theme to android manifest
Whenever I insert a theme in my android manifest file, my app crashes at launch. When I remove the theme declaration my app works fine again. This happens regardless of whether I use a custom theme or ...
1
vote
2answers
96 views
How to set screen size to full screen at runtime in android
I want to change the screen layout in my application to full screen when the user click on button but it didn't work, my code is:
protected void onCreate(Bundle savedInstanceState) {
...
2
votes
2answers
127 views
Styling text on a DialogFragment
I have a simple DialogFragment which shows a bit of text (which contains a Year string) and then a SeekBar that the user can slide and change the Year string.
On Android 3 and 4 this looks right... ...
0
votes
1answer
195 views
How to change EditText of Holo theme?
Is there a way to change the edittext style of the Hole theme? I don't want the default padding, neither the blue/grey line underneath. I just want a plain EditText I can put in a box with a hint. ...
1
vote
1answer
263 views
Custom ListView text color not changing according to theme when inside a Viewpager
In my app I am having a ViewPager in the main-screen out of which 2 fragments have custom ListViews. The app has different themes with different text colors in each theme.
I have implemented all the ...
1
vote
2answers
51 views
Different layout directories for themes [closed]
I want my application to have themes. Is it possible to make layout-default, layout-blue, layout-red directories etc in my android application? Or different res directories as res-default, res-blue ...
2
votes
0answers
57 views
Restore ActionBar style or Theme
If i do that in a Fragment inside FragmentActivity:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setHasOptionsMenu(true);
}
@Override
...
0
votes
1answer
83 views
Theme does not toggle
I am trying to toggle between the themes. I looked into the HoneyCombGallery sample code and found out the code to toggle between themes. But it is not working in my application.
Code:
...
2
votes
1answer
487 views
Custom background for activatedBackgroundIndicator on ActionBarSherlock doesn't work
I'm using ActionBarSherlock and I'm trying to customize the activatedBackgroundIndicator attribute for the row background.
If I use the latest android sdk, without the ActionBarSherlock, I'm able to ...
0
votes
1answer
55 views
ActionBarSherlock casues distortion of other views and it doesn't display correctly
I use the newest ActionBarSherlock extension of the support library in my application. I came across a weird appearance of the views and action bar itself when I ran an app on emulator 4.2 and device ...
0
votes
1answer
19 views
Access a value from the current theme in an xml layout
I want a specific TextView to have the same font size as a Button, but they appear to be different. If my Button is not setting a custom textSize, how can I grab this value from the current theme and ...
1
vote
1answer
57 views
What are the themes/styles used for theming the overflow dropdown menu
I am trying to theme the overflow dropdown menu but I am having trouble finding the correct themes and styles for this part of the actionbar.
I am currently looking in the following files:
...
1
vote
0answers
134 views
Changing AlertDialog text color and size on older Android version (2.3.3)
I am developing small Android application, in which I want to customize AlertDialog. For that I created my style for AlertDialog in following way:
<style name="MyTheme" ...
0
votes
0answers
179 views
Remove blue line above system bar
A thin blue line (from Holo Theme I guess) appears between my application and the system bar, so basically above the system bar.
How do I hide it?
P.S. : I'm talking about the system bar (with Home ...
1
vote
2answers
453 views
how to set holo UI theme without action bar in android 2.3 and above
Is there a way to use Holo theme in android 2.3 without using actionBar with it. I tried using Holoeverywhere library but it is showing actionbarbar as well.
Also I want the Holo UI same throughout ...










