多くの画像を表示するアニメーションを実行してImageSwitcher
いますが、画像を に設定することに固執していますImageSwitcher
。
これは私のxmlのimageswitcherです。
<?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="wrap_content"
android:orientation="vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="10dp"
android:src="@drawable/logo" />
<ImageSwitcher
android:id="@+id/switcher"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ImageSwitcher>
</LinearLayout>
ここに私のコードがあります
setContentView(R.layout.main_screen);
final int[] imgs = {R.drawable.m1,
R.drawable.m2,
R.drawable.m3,
R.drawable.m4,
R.drawable.m5,
R.drawable.m6};
imgswitcher = (ImageSwitcher) findViewById(R.id.switcher);
imgswitcher.postDelayed(new Runnable()
{
int index = 0;
@Override
public void run()
{
imgswitcher.setImageResource(imgs[index]);
if(index==(imgs.length-1))
index = 0;
else
index++;
imgswitcher.postDelayed(this, 1000);
}
}, 1000);
imgswitcher.setImageResource(imgs[index]);
行 " "でエラーが発生しています
エラー
11-13 15:08:34.574: E/AndroidRuntime(5258): FATAL EXCEPTION: main
11-13 15:08:34.574: E/AndroidRuntime(5258): java.lang.NullPointerException
11-13 15:08:34.574: E/AndroidRuntime(5258): at android.widget.ImageSwitcher.setImageResource(ImageSwitcher.java:41)
11-13 15:08:34.574: E/AndroidRuntime(5258): at com.example.imageswitcher.MainActivity$1.run(MainActivity.java:33)
11-13 15:08:34.574: E/AndroidRuntime(5258): at android.os.Handler.handleCallback(Handler.java:587)
11-13 15:08:34.574: E/AndroidRuntime(5258): at android.os.Handler.dispatchMessage(Handler.java:92)
11-13 15:08:34.574: E/AndroidRuntime(5258): at android.os.Looper.loop(Looper.java:123)
11-13 15:08:34.574: E/AndroidRuntime(5258): at android.app.ActivityThread.main(ActivityThread.java:3683)
11-13 15:08:34.574: E/AndroidRuntime(5258): at java.lang.reflect.Method.invokeNative(Native Method)
11-13 15:08:34.574: E/AndroidRuntime(5258): at java.lang.reflect.Method.invoke(Method.java:507)
11-13 15:08:34.574: E/AndroidRuntime(5258): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
11-13 15:08:34.574: E/AndroidRuntime(5258): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
11-13 15:08:34.574: E/AndroidRuntime(5258): at dalvik.system.NativeStart.main(Native Method)
Runnable
ドローアブルを に割り当てるだけで試してみましたImageSwitcher
が、同じ問題に直面しています。どんな助けでも大歓迎です。