ウィジェットでimageswitcherを使用するにはどうすればよいですか?
コードは正常にコンパイルされますが、ウィジェットを作成しようとするとエラーが発生します。
Error inflating AppWidget AppWidgetProviderInfo(provider=ComponentInfo{test.basic/test.basic.HelloWorldWidget}): android.view.InflateException: Binary XML file line #5: Error
inflating class android.widget.ImageSwitcher
imageswitcherのxmlコードは次のとおりです。
<ImageSwitcher android:id="@+id/image_switcher"
android:layout_width="fill_parent" android:layout_height="fill_parent" />
ビューファクトリを作成するための私のコードは次のとおりです。
@Override
public void onEnabled(final Context context) {
readImages(context);
ImageSwitcher imageSwitcher = getImageSwitcher(context);
imageSwitcher.setFactory(new ViewFactory() {
public View makeView() {
ImageView imageView = new ImageView(context);
imageView.setBackgroundColor(0xFF000000);
imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
imageView.setLayoutParams(new ImageSwitcher.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
return imageView;
}
});
}
どんな助けでも強くいただければ幸いです。
ありがとうございました