3

静的ウィジェットを表示するアプリがありますが、Droid Razr では動作しません。私のコーディングスキルはせいぜいアマチュアであるため、私は一生それを理解することはできません.

ウィジェットはホーム画面にありますが、表示されません。それらを移動することはできますが、表示されません。

基本的に、私のアプリには複数のウィジェットがあり、他の Android バージョンでは正常に動作しました。私はひどいコーディングについてはあまり心配していませんが、それが Razr で機能することを確認しています。(ただし、ヒントは大歓迎です!)

デモクラット.java

 package demo.crat.widgets;

    import android.app.Activity;

    import android.os.Bundle;

    public class democrat extends Activity {
        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

        }

}

次に、ウィジェットごとに別のJavaファイルがあります(これは適切なコーディングではないと確信しています)

W1.java

    package demo.crat.widgets;

import android.appwidget.AppWidgetProvider;

public class W1 extends AppWidgetProvider {
}

すべてのresファイルを編集する方法を理解しているので、それらを含めていません。

以下は私のマニフェストファイルです:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="demo.crat.widgets"
      android:versionCode="4"
      android:versionName="1.3">
    <uses-sdk android:minSdkVersion="4" />

      <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".democrat"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
<!-- Broadcast Receiver that will process AppWidget updates -->
        <receiver android:icon="@drawable/w1" android:name=".W1" android:label="@string/string1">
            <intent-filter>
                <action  android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/hello_widget_provider" />
        </receiver>
        <!-- Broadcast Receiver that will process AppWidget updates -->
        <receiver android:icon="@drawable/w2" android:name=".W2" android:label="@string/string2">
            <intent-filter>
                <action  android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/hello_widget_provider2" />
        </receiver>

    </application>
</manifest>

democrat.java に OnUpdate() がないことと関係があると思いますか? どんな助けでも大歓迎です!

4

0 に答える 0