2

天気ウィジェットを作成しています。最初にウィジェットをホーム画面にドラッグすると、構成画面に 3 つの都市を表す 3 つのボタンが表示されます。ユーザーがボタン (コペンハーゲンなど) をクリックすると、文字列 "Copenhagen"" がウィジェット自体に転送されるようになり、コペンハーゲンの気象データを取得してユーザーに表示できるようになります。それ?

AppWidget 設定画面

設定画面

ウィジェット画面

ウィジェット画面

4

1 に答える 1

0

SharedPreferences を使用したソリューションについて説明します。

  1. 2 つの Java ファイルが必要です。App Widget Configuration アクティビティ (Configure と呼びます) と AppWidgetProvider (WeatherWidget と呼びます)。

  2. Configuration アクティビティとウィジェットのレイアウトを定義する 2 つの xml ファイルが必要です (私の名前は activity_configure.xml と weather_widget.xml です)。

  3. マニフェスト ファイルとウィジェット情報ファイルが必要です (私は weather_widget_info と呼んでいます)。

ここに画像の説明を入力

構成からの関連コードは次のとおりです。

public class Configure extends AppCompatActivity {
    private int widgetID;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_configure);

    // if the user hits back button
    setResult(RESULT_CANCELED);

    // get widgetID for this widget instance
    Bundle extras = getIntent().getExtras();
    if (extras != null) {
        widgetID = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);
    }

    Button copenhagenButton = (Button) findViewById(R.id.copenhagenButton);
    copenhagenButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            saveData("Copenhagen");
            resultOK();
        }
    });

    Button stockholmButton = (Button) findViewById(R.id.stockholmButton);
    stockholmButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            saveData("Stockholm");
            resultOK();
        }
    });

    Button osloButton = (Button) findViewById(R.id.osloButton);
    osloButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            saveData("Oslo");
            resultOK();
        }
    });

}

private void saveData(String cityName) {
    String widgetIDString = Integer.toString(widgetID);
    SharedPreferences prefs = this.getSharedPreferences(widgetIDString, Context.MODE_PRIVATE);
    SharedPreferences.Editor edit = prefs.edit();
    edit.putString("city", cityName);
    edit.commit();
}

private void resultOK() {

    // send an onUpdate() message to the widget via a broadcast
    Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE, null, this, WeatherWidget.class);
    intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, new int[]{widgetID});
    sendBroadcast(intent);

    // signal OK
    Intent resultValue = new Intent();
    resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, widgetID);
    setResult(RESULT_OK, resultValue);
    finish();
}

}

WeatherWidget の関連コードは次のとおりです。

public class WeatherWidget extends AppWidgetProvider {
final static String TAG = "stille";
private int widgetID;
private String city="N/A";
RemoteViews views;

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    // There may be multiple widgets active, so update all of them
    final int N = appWidgetIds.length;
    for (int i = 0; i < N; i++) {
        widgetID = appWidgetIds[i];
        loadCity(context);
        views = new RemoteViews(context.getPackageName(), R.layout.weather_widget);
        views.setTextViewText(R.id.location, city);
        appWidgetManager.updateAppWidget(widgetID, views);
    }
}

private void loadCity(Context context) {
    String widgetIDString = Integer.toString(widgetID);
    SharedPreferences prefs = context.getSharedPreferences(widgetIDString, Context.MODE_PRIVATE);
    String cityName = prefs.getString("city", "N/A ");
    city = cityName;
}

}


</p>

于 2016-01-04T13:57:53.037 に答える