从小部件更改drawable

时间:2014-02-10 17:08:33

标签: java android android-widget appwidgetprovider

无法从我的 widget_main.xml

更改android:background

我试过了

remoteviews.setInt(R.id.boton, "setBackgroundResource", R.drawable.toggle_on);

remoteviews.setImageViewResource(R.id.boton, R.drawable.toggle_on);

没有结果。

这是我的 widget_main.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="10dp">

<Button 
    android:id="@+id/boton"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:background="@drawable/toggle_off"/>

我的 AppWidgetProvider

onReceive

@Override
public void onReceive(Context context, Intent intent) {        
    if (intent.getAction().equals(WIDGET_BUTTON)) {         

        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.activity_main);          
        views.setInt(R.id.boton, "setBackgroundResource", R.drawable.toggle_on); 

0 个答案:

没有答案