在widget抽屉中设置android小部件图标 - imagePreview问题?

时间:2015-01-20 10:30:46

标签: android image widget

我在使imagePreview工作时遇到问题。 事实是,在一个小部件抽屉我看不到我设置为预览的图像,但点击并按住(以使小部件到主屏幕)我得到我想要的图像的预览。

这是我的 widget.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="216dp"
android:minHeight="288dp"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget_layout"
android:previewImage="@drawable/other_fun">
</appwidget-provider>

AndroidManifest文件,widget_layout和widget.java应该没有任何关系,所以我不会发布它们。 有什么可能导致这个问题的线索?我尝试了几款测试手机,到目前为止没有运气..

1 个答案:

答案 0 :(得分:1)

如果您实现了DrawerView小部件,则无法在Android Studio的预览中看到抽屉。您需要在模拟器或设备上运行您的应用程序,然后在放置抽屉的屏幕一侧滑动(默认情况下很可能是左侧)。

以下是我在Google Sample Code中使用design library实现DrawerView的方法。 CheeseSquare示例也很好地实现了DrawerView。

enter image description here