I want my widget to update when the phones orientation has changed. Before android 2.0 you could register your widget to get the intent on orientation change

<intent-filter>
   <action android:name="android.intent.action.CONFIGURATION_CHANGED" />
</intent-filter>

but after 2.0 you cannot do it. Android Dev doc says:

You can not receive this through components declared in manifests, only by explicitly registering for it with Context.registerReceiver().

Good advice to try to register it, but you can not register a receiver in a AppWidgetProvider.

I just want to know when the phone switches orientation so I can show some text correctly to the user when I run low on vertical space.

link|improve this question
Check out the answers to this question: stackoverflow.com/questions/2435548/… – mbaird Apr 9 '10 at 20:05
Also, bear in mind that the home screen does not necessarily change orientation. For example, the Nexus One has the home screen in portrait orientation regardless of the physical position of the device. You are far better served adjusting your UI to not care so much about orientation and vertical space. – CommonsWare Apr 9 '10 at 21:06
Thanks guys, I figured as much. I was trying the layout landscape stuff but still could not get it to handle my widget layout right still. Thanks again. – Jarad Duersch Apr 10 '10 at 5:05
feedback

1 Answer

You can create a service and register it to the CONFIGURATION_CHANGED event, like this

public class MyService extends Service {


@Override
public void onCreate() {
    super.onCreate();

    BroadcastReceiver bReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            refreshWidget();  // Code to refresh the widget
        }
    };

    IntentFilter intentFilter = new IntentFilter(Intent.ACTION_CONFIGURATION_CHANGED);
    registerReceiver(bReceiver, intentFilter);

`}

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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