8

我在将数据(字符串)从我的活动发送到我的 appWidgetProvide 类时遇到了一些问题。

我有一个名为 updateWidget 的方法。当小部件第一次放置在主屏幕中时,小部件配置活动会调用此方法。当用户将数据输入到该活动中时,当它从我的一个活动接收数据时,onReceive 方法也会调用此方法。

这是我的问题:小部件被放置在主屏幕中,所有数据都在正确的位置。但是,当我的活动通过 onReceive(使用意图和附加功能)发送数据时,数据不会通过。我只是在 extras.getString 上得到一个空字符串。

我以前使用意图在活动之间发送数据,当我向小部件提供类发送数据时是否需要做一些不同的事情?还是我只是愚蠢而遗漏了一些明显的东西?

我附上了(我认为是)相关的代码。如果您需要任何说明或更多代码,请告诉我。

感谢您花时间阅读本文以及您可以提供的任何帮助,

干杯拉克沙克

小部件配置类中的 onListItemClick。

@Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);

        Cursor note = mDbHelper.fetchNote(id);
        startManagingCursor(note);
        String title = note.getString(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE));
        String text = note.getString(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY));
        loadData(title);


        Intent resultValue = new Intent();
        resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mAppWidgetId);            
        setResult(RESULT_OK,resultValue);   
        finish();
 }



 void loadData(String title) {

    AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this); 

    SingleNote.updateWidget(this, appWidgetManager, mAppWidgetId, title);

}

将数据发送到 onReceive 的意图(这是我的活动类之一)

private void updateWidget() { 
    Intent i = new Intent(this, SingleNote.class); 
    i.setAction(SingleNote.UPDATE_ACTION); 
    Toast.makeText(getApplicationContext(),mTitleText.getText()+"from the activity",
            Toast.LENGTH_SHORT).show();//This works just fine
    i.putExtra("title", mTitleText.getText());
    sendBroadcast(i); 

}

我的小部件提供类

public class SingleNote extends AppWidgetProvider {

public static String UPDATE_ACTION = "ActionUpdateSinglenoteWidget";
private static NotesDbAdapter mDbHelper;



public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    final int N = appWidgetIds.length;

    // Perform this loop procedure for each App Widget that belongs to this provider
    for (int i=0; i<N; i++) {
        int appWidgetId = appWidgetIds[i];



     // Tell the AppWidgetManager to perform an update on the current app widget
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.singlenote_widget);
        appWidgetManager.updateAppWidget(appWidgetId, views);




    }
}

@Override 
public void onReceive(Context context, Intent intent) { 

        String action = intent.getAction(); 
        Bundle extras = intent.getExtras(); 
        String title1 = extras.getString("title");//this value does not come through
        Toast.makeText(context, title1,Toast.LENGTH_LONG).show();//this gives an empty space

        if (action != null && action.equals(UPDATE_ACTION)) { 
                final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context); 
                ComponentName name = new ComponentName(context, SingleNote.class);
                int[] appWidgetId = AppWidgetManager.getInstance(context).getAppWidgetIds(name);
                final int N = appWidgetId.length;
                if (N < 1)
                {
                    return ;
                }
                else {
                    int id = appWidgetId[N-1];
                    updateWidget(context, appWidgetManager, id ,title1);
                }
        } 

        else { 
                super.onReceive(context, intent); 
        } 
} 



static void updateWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId, String title){

    RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.singlenote_widget);
    views.setTextViewText(R.id.single_note_title, title);
    appWidgetManager.updateAppWidget(appWidgetId, views);



}
4

1 回答 1

1

我建议尝试i.putExtra("title", mTitleText.getText());updateWidget()i.putExtra("title", mTitleText.getText().toString());

String title1 = extras.getString("title");

需要字符串,然后mTitleText.getText()返回Editable- 这可能是不匹配的

于 2013-07-02T22:03:33.190 回答