好的,所以如果我理解正确,您希望在您的小部件配置活动 ( Info
) 中有两个按钮。一个按钮将在小部件本身中切换图像(在R.drawable.widgetdial
和之间R.drawable.widgetdial2
)。另一个按钮将保存选择并退出Info
活动。正确的?
当然,您需要在布局中为您的Info
活动添加一个按钮。我在下面引用了这个R.id.change_button
作为示例。
我已经对此进行了测试,并且可以正常工作。我在您的代码中添加了一些代码,并用注释标记了新代码:
public class Info extends Activity {
//next three lines is new code
private int drawableSrc;
private TextView statusText;
private Button changeButton;
int mAppWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID;
public Info() {
super();
}
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setResult(RESULT_CANCELED);
setContentView(R.layout.widget_activity_info);
findViewById(R.id.save_button).setOnClickListener(mOnClickListener);
//next six lines is new code
statusText = (TextView)findViewById(R.id.text);
statusText.setText("Now showing widgetdial image");
changeButton = (Button)findViewById(R.id.change_button);
changeButton.setText("Change to widgetdial2 image");
drawableSrc = R.drawable.widgetdial;
changeButton.setOnClickListener(changeOnClickListener);
Intent intent = getIntent();
Bundle extras = intent.getExtras();
if (extras != null) {
mAppWidgetId = extras.getInt(
AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);
}
}
View.OnClickListener mOnClickListener = new View.OnClickListener() {
public void onClick(View v) {
final Context context = Info.this;
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
RemoteViews views = new RemoteViews(context.getPackageName(),
R.layout.widget_activity);
//next line is new code, needs to come before updateWidgetApp
views.setImageViewResource(R.id.viewid, drawableSrc);
appWidgetManager.updateAppWidget(mAppWidgetId, views);
Intent resultValue = new Intent();
resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, mAppWidgetId);
setResult(RESULT_OK, resultValue);
finish();
}
};
//everything below this is new code
View.OnClickListener changeOnClickListener = new View.OnClickListener() {
public void onClick(View v) {
if(drawableSrc == R.drawable.widgetdial) {
drawableSrc = R.drawable.widgetdial2;
statusText.setText("Now showing widgetdial2 image");
changeButton.setText("Change to widgetdial image");
}
else {
drawableSrc = R.drawable.widgetdial;
statusText.setText("Now showing widgetdial image");
changeButton.setText("Change to widgetdial2 image");
}
}
};
}
我已将您要更改的内容引用为R.id.viewid
,但这当然只是一个示例 ID 引用。
根据您要确切更改的内容(小部件背景或小部件图像视图?),您可以在这里查看:Other SO question
这是我用于Info
活动的示例布局(您引用为的文件R.id.widget_activity_info
):
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true" />
<Button
android:id="@+id/change_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@id/text" />
<Button
android:id="@+id/save_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Save"
android:layout_below="@id/change_button" />
</RelativeLayout>
如果它仍然对您不起作用,请查看我为您上传的示例。zip 文件包含您可以导入到 eclipse 中的工作区。您可以在模拟器中运行它。
我希望这可以帮助你。