※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※AndroidManifest.xmlの基本形
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" …略…>
<application …略…>
<activity …略…>
……Activityの情報……
</activity>
</application>
<uses-sdk android:minSdkVersion="番号" />
</manifest>
※AndroidManifest.xmlの追記
<receiver android:name="MyAppWidget" android:label="MyAppWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/myappwidget" />
</receiver>
<service android:name="MyService">
<intent-filter>
<action android:name="jp.tuyano.MyService.ACTION_BTNCLICK" />
</intent-filter>
</service>
| << 前へ | 次へ >> |