8

アクティビティから appWidgetProvide クラスにデータ (文字列) を送信する際に問題が発生しています。

updateWidget というメソッドがあります。これは、ウィジェットが最初にホーム画面に配置されたときに、ウィジェット構成アクティビティによって呼び出されます。このメソッドは、ユーザーがアクティビティにデータを入力したときにアクティビティの 1 つからデータを受け取るときに、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 に送信するインテント (これは私のアクティビティ クラスの 1 つにあります)

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 に答える