Упражнение по настройке виджета приложения - как получить доступ к просмотру виджета?
Я создал файл конфигурации виджета, который запускается, когда виджет моего приложения размещается на экране. Однако я не знаю, как получить доступ к кнопке из макета моего виджета, чтобы внести в нее изменения (в этом примере я хочу изменить цвет / оттенок)
public class ExampleAppWidgetConfig extends AppCompatActivity {
private int appWidgetId;
private RadioGroup radioGroupColor;
private RadioButton radioButtonDefault;
private RadioButton radioButtonGreen;
private RadioButton radioButtonRed;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_example_app_widget_config);
Intent configIntent = getIntent();
Bundle extras = configIntent.getExtras();
if (extras != null) {
appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID,
AppWidgetManager.INVALID_APPWIDGET_ID);
}
radioGroupColor = findViewById(R.id.radio_group_color);
radioButtonDefault = findViewById(R.id.radio_button_default);
radioButtonGreen = findViewById(R.id.radio_button_green);
radioButtonRed = findViewById(R.id.radio_button_red);
}
public void confirmConfiguration(View v) {
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(this);
Intent intent = new Intent(this, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
RemoteViews views = new RemoteViews(this.getPackageName(), R.layout.example_widget);
views.setOnClickPendingIntent(R.id.example_widget_button, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetId, views);
Intent resultValue = new Intent();
resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
setResult(RESULT_OK, resultValue);
finish();
}
}