web-dev-qa-db-ja.com

作成方法Android単一のアプリでアプリウィジェットを使用したアプリ

私はすでに1つAndroidアプリケーションを実行しました。これは日付を個人名と電話番号とともに保存します。

次に、このアプリケーションがボタンで今日(日付、人名、電話番号)を表示するために、1つウィジェットを開発する必要があります。

要件:

  1. アプリとウィジェットを備えた単一のアプリケーション。
  2. ウィジェットにあるボタンをクリックすると、アプリケーションが起動します。
  3. ウィジェットデータは常にアプリと同期する必要があります-今日の日(5人のアプリケーションと5人のアプリケーションが5人を追加してから、ウィジェットが10人のデータを表示します)
  4. このウィジェットをどのように設計できますか?ガイドラインはありますか?水平のScrollViewを使用する必要があります。

簡単なウィジェットのデモを行いましたが、アプリケーションと同期する方法がわかりません。

あなたの経験を共有し、私のウィジェットとアプリケーションについてのアイデアを教えてください。

37
Harshid

何とか解決策を得た数日を見つけています。だから私は私のアイデアを共有しています。

このサイトは私にとって非常に役立ちました。

http://kasperholtze.com/Android/how-to-make-a-simple-Android-widget/

私はいくつかの変更を加えて仕事をしました。

要件ソリューション:

1。Receiverを作成し、このようなマニフェストの許可を設定します。

_<receiver
        Android:name=".WatchWidget"
        Android:label="WatchWidget" >
        <intent-filter>
            <action Android:name="Android.appwidget.action.APPWIDGET_UPDATE" />
        </intent-filter>
        <meta-data
            Android:name="Android.appwidget.provider"
            Android:resource="@xml/watch_widget_provider" />
    </receiver>
_

2。私の側ではonUpdate()でTextView idを使用してトップのTextViewクリックが必要です。

_    remoteViews = new RemoteViews(context.getPackageName(),R.layout.widget_lay);

    Intent intent = new Intent(context, TestActivity.class);
    intent.setAction("callActivity");
    PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
    remoteViews.setOnClickPendingIntent(R.id.widget_textview, pendingIntent); 
    appWidgetManager.updateAppWidget(new ComponentName(context,WatchWidget.class), remoteViews);
_

3。データベースを呼び出し、レコードを取得して表示したい。更新についてはどうですか?

だから、私はタイマークラスを使用し、ウィジェットが常に30分更新される可能性があるため、1000秒ごとに実行しています(たぶん)。

_@Override
public void onUpdate( final Context context, final AppWidgetManager appWidgetManager, final int[] appWidgetIds )
{

    this.appWidgetManager = appWidgetManager;
    try {
        Timer timer = new Timer();
        timer.scheduleAtFixedRate(new MyTime(context, appWidgetManager,appWidgetIds), 1, 1000);

    } catch (Exception e) {
        System.out.println("Exception:");
    }
    updateSwitch1(context, appWidgetManager, appWidgetIds[0]);

}
_

質問がある場合は、コメントを入力し、この回答を役立つように全面的にサポートしてくれたすべての人に感謝します。

8
Harshid

ウィジェットの作成と構成

ウィジェットを登録するには、Android.appwidget.action.APPWIDGET_UPDATEアクションのインテントフィルターでBroadcastReceiverを作成します。

<receiver
       Android:icon="@drawable/icon"
       Android:label="Example Widget"
       Android:name="MyWidgetProvider" >
       <intent-filter >
            <action Android:name="Android.appwidget.action.APPWIDGET_UPDATE" />
       </intent-filter>

       <meta-data
          Android:name="Android.appwidget.provider"
          Android:resource="@xml/widget_info" />
</receiver> 

また、Android:name = "Android.appwidget.provider属性を使用してウィジェットのメタデータを指定します。このメタデータによって参照される構成ファイルには、ウィジェットの構成設定が含まれます。ウィジェットのサイズと初期レイアウト。

/ res/drawableディレクトリに新しいファイルmyshape.xmlを作成します。このファイルは、ウィジェットで使用する背景を定義します。

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:Android="http://schemas.Android.com/apk/res/Android"
           Android:shape="rectangle" >

    <stroke
        Android:width="2dp"
        Android:color="#FFFFFFFF" />

    <gradient
        Android:angle="225"
        Android:endColor="#DD2ECCFA"
        Android:startColor="#DD000000" />

    <corners
        Android:bottomLeftRadius="7dp"
        Android:bottomRightRadius="7dp"
        Android:topLeftRadius="7dp"
        Android:topRightRadius="7dp" />

</shape> 

以下を定義しますwidget_layout.xmlファイルはres/layoutフォルダーの下にあります。

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
          Android:id="@+id/layout"
          Android:layout_width="match_parent"
          Android:layout_height="match_parent"
          Android:layout_margin="8dip"
          Android:background="@drawable/myshape" >

        <TextView
            Android:id="@+id/update"
            style="@Android:style/TextAppearance.Medium"
            Android:layout_width="match_parent"
            Android:layout_height="match_parent"
            Android:layout_gravity="center"
            Android:gravity="center_horizontal|center_vertical"
            Android:layout_margin="4dip"
            Android:text="Static Text" >
        </TextView>

    </LinearLayout> 

今クラスを作ります。

public class MyWidgetProvider extends AppWidgetProvider {

  private static final String ACTION_CLICK = "ACTION_CLICK";  

     @Override
  public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {

    // Get all ids
    ComponentName thisWidget = new ComponentName(context,
        MyWidgetProvider.class);
    int[] allWidgetIds = appWidgetManager.getAppWidgetIds(thisWidget);
    for (int widgetId : allWidgetIds) {
      // Create some random data
      int number = (new Random().nextInt(100));

      RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
          R.layout.widget_layout);
      Log.w("WidgetExample", String.valueOf(number));
      // Set the text
      remoteViews.setTextViewText(R.id.update, String.valueOf(number));

      // Register an onClickListener
      Intent intent = new Intent(context, MyWidgetProvider.class);

      intent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
      intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds);

      PendingIntent pendingIntent = PendingIntent.getBroadcast(context,
          0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
      remoteViews.setOnClickPendingIntent(R.id.update, pendingIntent);
      appWidgetManager.updateAppWidget(widgetId, remoteViews);
    }
  }
36
Roadies