Android Open Source - radio-presets-widget Widget Provider Presets






From Project

Back to project page radio-presets-widget.

License

The source code is released under:

Apache License

If you think the Android project radio-presets-widget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 Reese Wilson | Shiny Mayhem
//from  ww  w . j  ava 2  s.  c o m
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

package com.shinymayhem.radiopresets;

import android.annotation.SuppressLint;
import android.annotation.TargetApi;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.content.Intent;
import android.os.Build;
import android.os.Bundle;

public class WidgetProviderPresets extends AppWidgetProvider {
    
    protected Context mContext;
    public static final int MIN_BUTTON_WIDTH = 65; //TODO get from preferences

    public void onEnabled(Context context)
    {
        
        mContext = context;
        super.onEnabled(context);
        pullInfo(context);
    }
    
    public void onReceive(Context context, Intent intent)
    {
        
        mContext = context;
        super.onReceive(context, intent);   
        
    }
    
    
    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    public void onAppWidgetOptionsChanged(Context context, AppWidgetManager appWidgetManager, int appWidgetId, Bundle newOptions)
    {
        mContext = context;
        this.updateWidget(context, newOptions);
        this.pullInfo(context);
        //super.onAppWidgetOptionsChanged(context, appWidgetManager, appWidgetId, newOptions);
    }
    

    @SuppressLint("NewApi")
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        updateWidget(context, null);
        pullInfo(context);
    }
    
    /**
     * update the widget views
     * @param context
     * @param newOptions
     */
    private void updateWidget(Context context, Bundle newOptions)
    {
        Intent intent = new Intent(context, ServiceWidgetUpdate.class);
        intent.setAction(ServiceWidgetUpdate.ACTION_UPDATE_WIDGET);
        if (newOptions != null)
        {
            intent.putExtras(newOptions);   
        }
        context.startService(intent);
    }
    
    /**
     * Get the widget to be updated by the service with current info
     * @param context
     */
    private void pullInfo(Context context)
    {
        Intent intent = new Intent(context, ServiceRadioPlayer.class);
        intent.setAction(ServiceRadioPlayer.ACTION_PULL_WIDGET_INFO);
        context.startService(intent);
    }
    
    
    
}




Java Source Code List

com.radiopirate.android.service.IcyStreamMeta.java
com.shinymayhem.radiometadata.JazzRadio.java
com.shinymayhem.radiometadata.Parser.java
com.shinymayhem.radiometadata.ShoutcastV1.java
com.shinymayhem.radiometadata.XmlParser.java
com.shinymayhem.radiopresets.ActivityLogger.java
com.shinymayhem.radiopresets.ActivityMain.java
com.shinymayhem.radiopresets.ContentProviderRadio.java
com.shinymayhem.radiopresets.CursorAdapterStations.java
com.shinymayhem.radiopresets.DbContractRadio.java
com.shinymayhem.radiopresets.DialogFragmentAdd.java
com.shinymayhem.radiopresets.DialogFragmentEvent.java
com.shinymayhem.radiopresets.FragmentPlayer.java
com.shinymayhem.radiopresets.FragmentStations.java
com.shinymayhem.radiopresets.MetadataParser.java
com.shinymayhem.radiopresets.MultiChoiceModeListenerStation.java
com.shinymayhem.radiopresets.ReceiverRemoteControl.java
com.shinymayhem.radiopresets.ServiceAudioFormat.java
com.shinymayhem.radiopresets.ServiceRadioPlayer.java
com.shinymayhem.radiopresets.ServiceWidgetUpdate.java
com.shinymayhem.radiopresets.WidgetProviderPresets.java