Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9066109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T16:39:57+00:00 2026-06-16T16:39:57+00:00

I have an app with a widget. I know that Android 4.0 or later

  • 0

I have an app with a widget. I know that Android 4.0 or later will automatically create a margin around the widget so I’ve implemented the suggestion on this developers API page to make the widgets approximately the same size on different Android versions. I’ve tested the widget in the emulator on API 10, 14 and 15 and it works fine. The widget looks the same in all versions. However, when I test it on my SGS2 phone with Android 4.0.3 there are no margins! How can this be? What am I missing? Did anyone else experience this behaviour?

Widget on emulator API 15!enter image description here

Here’s my res/xml/widget_info.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" 

    android:initialLayout="@layout/widget"    
    android:minHeight="40dp"  
    android:minWidth="110dp"
    android:updatePeriodMillis="60000" >

</appwidget-provider>

res/layout/widget.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/widget_mainlayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:layout_margin="@dimen/widget_margin"
    android:background="@drawable/widget_background" >             
</RelativeLayout>

res/drawable/widget_background.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

<stroke
    android:width="2dp"
    android:color="#222222" />

<gradient
    android:angle="225"
    android:startColor="#DD2ECCFA"
    android:endColor="#DD000000" />

<corners android:radius="7dp" />

</shape>

res/values/dimens.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="widget_margin">8dp</dimen>
</resources>

res/values-v14/dimens.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <dimen name="widget_margin">0dp</dimen>  
</resources>

At first I thought it had something to do with the widget not being properly updated as described here, but removing the widget and adding it again doesn’t help. I’ve also experimented a bit with the settings:

  • Setting maxHeight and maxWidth in the widget_info.xml file doesn’t work, it seems to be ignored by both the emulator and the phone.
  • Changing layout_margin to padding in the widget.xml file has no effect, widget looks the same (but on emulator API10 widget now also has no margins)
  • Changing the 0dp to 16dp in the res/values-v14/dimens.xml file does have an effect in both the phone and the emulator, but the widget’s size on the phone and emulator still is different.

EDIT:
I’ve installed GO Launcher Ex on the phone and then the widget does have margins, so I guess this is a specific issue for Samsung’s TouchWiz launcher? Can anyone confirm this? I am also interested in solutions to make the widget look (more or less) the same when using TouchWiz.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T16:39:58+00:00Added an answer on June 16, 2026 at 4:39 pm

    As you already pointed out, the trick is to use different margins/padding for TouchWiz devices or SDK level < 14. For SDK level < 14 you should continue to use dimens.xml, but for TouchWiz you’ll need to create a separate layout file. Then if you detect TouchWiz, you switch the layout file in the constructor of the widget RemoteViews:

    RemoteViews views = new RemoteViews(
        context.getPackageName(), 
        isAlternativeMargins(context) ? 
            R.layout.alternative_layout : 
            R.layout.normal_layout
    )
    

    To detect TouchWiz and other launchers having the same problem, you could use the following code:

    /* sorted alphabetically to be able to use Arrays.binarySearch later on */
    private final static String[] LAUNCHER_ALTERNATIVES = {
        "com.sec.android.app.launcher",
        "com.sec.android.app.twlauncher",
    };
    
    private final static String[] LAUNCHER_ALTERNATIVE_EXCEPTIONS = {
        "GT-I9100", // Galaxy S II
        "GT-I9100G", // Galaxy S II
        "GT-I9100T", // Galaxy S II
        "GT-I9210T", // Galaxy S II
        "GT-I9100M", // Galaxy S II
        "SGH-I757M", // Galaxy S II
        "SGH-I727R", // Galaxy S II
        "SGH-I927", // Galaxy S II
        "SGH-T989D", // Galaxy S II
        "GT-I9108", // Galaxy S II
        "GT-I9100P", // Galaxy S II
        "ISW11SC", // Galaxy S II
        "SC-02C", // Galaxy S II
        "SHW-M250K", // Galaxy S II
        "SHW-M250L", // Galaxy S II
        "SHW-M250S", // Galaxy S II
        "SGH-I777", // Galaxy S II
        "SGH-I727", // Galaxy S II
        "SGH-I927", // Galaxy S II
        "SPH-D710", // Galaxy S II
        "SGH-T989", // Galaxy S II
        "SCH-R760", // Galaxy S II
        "GT-N7000", // Galaxy Note
        "SHV-E160K", // Galaxy Note
        "SHV-E160L", // Galaxy Note
        "SHV-E160S", // Galaxy Note
        "SGH-I717", // Galaxy Note
        "SC-05D", // Galaxy Note
        "SGH-T879", // Galaxy Note
        "GT-I9220", // Galaxy Note
        "GT-I9228", // Galaxy Note
        "SCH-I889", // Galaxy Note
        "SGH-I717", // Galaxy Note
    };
    
    static {
        Arrays.sort(LAUNCHER_ALTERNATIVE_EXCEPTIONS);
    }
    
    
    public static boolean isAlternativeMargins(Context context) {
        if (Build.VERSION.SDK_INT < 14)
            return false;
    
        PackageManager pm = context.getPackageManager();
        Intent i = new Intent(Intent.ACTION_MAIN);
        i.addCategory(Intent.CATEGORY_HOME);
        i.addCategory(Intent.CATEGORY_DEFAULT);
    
        ResolveInfo info = pm.resolveActivity(i, PackageManager.MATCH_DEFAULT_ONLY);
    
        if (
                info != null && info.activityInfo != null && 
                info.activityInfo.taskAffinity != null
        ) {
            int pos = Arrays.binarySearch(
                    LAUNCHER_ALTERNATIVES, info.activityInfo.taskAffinity
            );
    
            // if TouchWiz
            if (pos >= 0) {
                // if >= Android 4.1.2 and (Galaxy S II or Galaxy Note) 
                if ( getSdk() >= 16 && Arrays.binarySearch(
                        LAUNCHER_ALTERNATIVE_EXCEPTIONS, Build.MODEL
                ) >= 0)
                    return false;
    
                return true;
            }
        }
        return false;
    }
    

    The code above detects the default launcher and returns true, if it is TouchWiz.

    EDIT: Modified for additional launchers that seem to have the same problem as TouchWiz.

    EDIT 2: Modified for Android 4.1.2 on Galaxy S II and Galaxy Note where the widget margins work as expected. In contrast on a Galaxy S 3 with Android 4.1.2, they don’t work as expected which will probably change for future TouchWiz versions from Samsung.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an App Widget for Android 1.5. It uses a TextView to
I have 1 android app project and 1 widget project, they all work fine.
I have a widget that is a part of my main app. Usually when
I have a widget that supposed to call an Activity of the main app
I'm trying to record sound using Android Emulator. I know that this question is
I have a fully functioning Android widget that consists of a service provider class,
I have built a android widget that allows for multiple sizes 2x2 and 4x2.
For an Android app...I have a button on an Activity that calls a custom
The main Activity in my Android app has a Gallery widget that loads XML
I have a problem with my Android app. I have three Activities that all

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.