Can I somehow detect if my app is running on HTC Sense?

More generally, the problem is, that I have a Button with custom drawable. It's something very similar to the account switcher in the top right of Gmail app. When pressed or focused, the button has orange highlight. But that doesn't look nice on HTC Sense - because the standard highlight color there is green.

link|improve this question

61% accept rate
If you have got only 5, you'll need a 6th Sense. – Atømix Sep 9 '10 at 15:53
feedback

5 Answers

Lets see android.os.Build strings I am not sure what the HTC folks use a combination to indicate a HTC sense device..

link|improve this answer
feedback

I think that Android has provided a better way for you to solve this than doing a check for Sense, and it will work for every device manufacturer. HTC isn't the only one who has changed the colors on the selectors. I think Sony Ericsson has a transparent white/blue, Motorola changed it to red in their MotoBlur UI, and Garmin-Asus changed it to blue in theirs just to name a few.

What you should do is override the android:background attribute on your image button and use a drawable of your own instead of relying on the framework's background drawable. If you're not already familiar with them, you'll probably also want to take a look at Selectors when you create your custom background, so you still get the pressed/selected/not-selected color cues.

If you have multiple buttons that you want to do this on, you may want to use styles and themes to help out with this. The two primary places you'll want to reference from the Android documentation are "Applying Styles and Themes" and "Style Resources"

Hope that helps!

link|improve this answer
In the question I am saying that I do use a custom drawable. The highlight color is orange which doesn't look "native" in HTC Sense. There's no easy way to solve this in Android, because every manufacturer can have its own UI style... :( All I can do is detect if I'm on Sense and set the green drawable. I know that there are other UI customization apart from Sense, but I want to deal with Sense only, because it's so widespread. – fhucho Sep 12 '10 at 13:20
feedback

Here's a link suggesting a way to detect HTC Sense on the device, about 1/3 the way down the discussion. I've tested on Desire and Desire Z.

Code is below (from a user: David):

private static final String SENSE_UI_LAUNCHER_NAME = 
          "com.htc.launcher.Launcher"; 
    private static Boolean senseUI; 

    public static final boolean isSenseUI(Context context) {
        if (senseUI == null) {
            senseUI = false;
            PackageManager packageManager = context.getPackageManager();

            Intent intent = new Intent(Intent.ACTION_MAIN);
            intent.addCategory(Intent.CATEGORY_HOME);
            List<ResolveInfo> list = packageManager.queryIntentActivities(
                    intent, PackageManager.MATCH_DEFAULT_ONLY);
            for (ResolveInfo info : list) {
                if (info.activityInfo != null
                        && SENSE_UI_LAUNCHER_NAME
                                .equals(info.activityInfo.name)) {
                    senseUI = true;
                    break;
                }
            }
        }
        return senseUI;
    }
link|improve this answer
feedback

You could try looking for an HTC/Sense application that relies on the Rosie framework and can't be uninstalled - or maybe the Rosie framework itself being present would be enough. This thread shows how to get a list of installed applications.

link|improve this answer
And if you go with Fred's method, you can probably find a ripped ROM on XDA Developers to pull the build string from. – Josiah Sep 9 '10 at 15:46
feedback

I think the following approach should be followed - we define android:background, something like

<?xml version="1.0" encoding="UTF-8"?>
<selector
  xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@drawable/pressed_application_background" />
    <item android:state_focused="true" android:state_window_focused="true" android:drawable="@drawable/focused_application_background" />
    <item android:state_focused="true" android:state_window_focused="false" android:drawable="@android:color/transparent" />
</selector>

But here we should refer to some standard resources, not to the images of our application. Just need to find out which ids they have.

link|improve this answer
The drawable I am using is not included in Android. – fhucho Apr 17 '11 at 8:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.