2

我有一个小部件,它主要做我想做的事情(启动一个意图),但我想知道如何将多个意图压缩到一个小部件提供程序中。

我已经尝试了所有通常的方法来完成这项工作:

  • 使用不止一个意图
  • 使用具有相同主题设置的第二个小部件以及其他一些最终失败的小部件。

通用代码:

public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
    for (int appWidgetId : appWidgetIds) {

        Intent startIntent = new Intent(context, myClass.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, startIntent, 0);

        // Get the layout for the App Widget and attach an on-click listener to the button
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.MyWidget);
        views.setOnClickPendingIntent(R.id.startBtn, pendingIntent);

        // Tell the AppWidgetManager to perform an update on the current App Widget
        appWidgetManager.updateAppWidget(appWidgetId, views);
    }       
}

所以我想弄清楚如何在小部件上获得一个以上的按钮。由于它设置为三个,我知道其中一个有效,所以我是那里的 1/3。

这是 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
    android:id="@+id/startBtn"
    android:layout_width="150dp"
    android:layout_height="75dp"
    android:layout_marginBottom="5dp"
    android:background="@drawable/mybg"
    android:gravity="center"
    android:text="First Menu Item"
     />

<TextView
    android:id="@+id/startBtn2"
    android:layout_width="150dp"
    android:layout_height="75dp"
    android:layout_marginBottom="5dp"
    android:background="@drawable/mybg"
    android:gravity="center"
    android:text="Second menu item" />

<TextView
    android:id="@+id/startBtn3"
    android:layout_width="150dp"
    android:layout_height="75dp"
    android:layout_marginBottom="5dp"
    android:background="@drawable/mybg"
    android:gravity="center"
    android:text="Third menu item" />

</LinearLayout>
4

1 回答 1

1

好的,所以你几乎明白了!这个想法是创建 3 differentPendingIntents和 3 different Intents,然后调用setOnClickPendingIntent3 次。每个动作和按钮一个。这是一个示例,假设三个活动是 myClass、myClass2 和 myClass3。使用下面的代码,每个按钮都会触发不同的意图。

for (int appWidgetId : appWidgetIds) {

    Intent startIntent = new Intent(context, myClass.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, startIntent, 0);

    Intent startIntent2 = new Intent(context, myClass2.class);
    PendingIntent pendingIntent2 = PendingIntent.getActivity(context, 0, startIntent2, 0);

    Intent startIntent3 = new Intent(context, myClass3.class);
    PendingIntent pendingIntent3 = PendingIntent.getActivity(context, 0, startIntent3, 0);

    // Get the layout for the App Widget and attach an on-click listener to the button
    RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.MyWidget);
    views.setOnClickPendingIntent(R.id.startBtn, pendingIntent);
    views.setOnClickPendingIntent(R.id.startBtn2, pendingIntent2);
    views.setOnClickPendingIntent(R.id.startBtn3, pendingIntent3);


    // Tell the AppWidgetManager to perform an update on the current App Widget
    appWidgetManager.updateAppWidget(appWidgetId, views);
}  
于 2012-08-15T17:26:41.313 回答