我是开发Android小部件的新手,所以如果这是一个愚蠢的问题,请耐心等待。我正在根据自己的需要编写自己的mp3播放器。我有它作为一个应用程序工作得很好,但现在我想把它拉到一个主屏幕小部件(更多的学习练习比其他任何东西)。
我将我的mp3播放器逻辑拆分为一个单独的类,当我尝试通过从我的小部件单击按钮来实现该类中的对象时,它可以正常工作。问题是,我似乎无法在下次单击该按钮时使用相同的对象或任何其他按钮。相反,每次在我的窗口小部件中单击按钮时,它都会重新创建一个新对象。我只是想让我的播放/暂停ImageView功能正常。
这是我的WidgetProvider的代码
package com.example.musicplayerforburrito;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.widget.RemoteViews;
public class MyWidgetProvider extends AppWidgetProvider {
public static String WIDGET_PLAY_BUTTON = "android.appwidget.action.PLAY_PAUSE_WIDGETS";
MusicPlayerClass mpc = new MusicPlayerClass();
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
ComponentName watchWidget = new ComponentName(context, MyWidgetProvider.class);
remoteViews.setOnClickPendingIntent(R.id.playpausewidget, getPendingSelfIntent(context, WIDGET_PLAY_BUTTON));
appWidgetManager.updateAppWidget(watchWidget, remoteViews);
}
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
super.onReceive(context, intent);
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
RemoteViews remoteViews = new RemoteViews( context.getPackageName(), R.layout.widget_layout );
ComponentName watchWidget = new ComponentName(context, MyWidgetProvider.class);
if (WIDGET_PLAY_BUTTON.equals(intent.getAction())) {
if(!mpc.hasFolders)
mpc.Initialize();
if(!mpc.isPlaying)
{
remoteViews.setTextViewText(R.id.mp3filename, mpc.StartSong());
remoteViews.setImageViewResource(R.id.playpausewidget, R.drawable.pause);
}
else
{
mpc.PauseMusic();
remoteViews.setImageViewResource(R.id.playpausewidget, R.drawable.play);
}
appWidgetManager.updateAppWidget(watchWidget, remoteViews);
}
}
protected PendingIntent getPendingSelfIntent(Context context, String action) {
Intent intent = new Intent(context, getClass());
intent.setAction(action);
return PendingIntent.getBroadcast(context, 0, intent, 0);
}
}
任何建议都将不胜感激。
TIA
答案 0 :(得分:0)
如果您希望对象与该类关联,而不是为每个实例关联一个对象,则需要将其声明为static
。这意味着每次创建包含类的实例时,它们都将引用相同的对象。