检查是否可以在Android中设置滚动壁纸

时间:2013-03-02 18:12:19

标签: android scroll

现在我在wallapapers应用程序工作,并有一个问题。在设置壁纸的屏幕上我有3个按钮:所有图片|无滚动的图片|滚动图片! 1& 2个案例都很好,但在3我不知道如何从系统,这个选项。 现在在我的代码中我检查android版本< 2.3.6或getDesiredMinimumWidth()< = 0然后启用滚动的按钮:

if (wpm.getDesiredMinimumWidth() <= 0 || 
        Build.VERSION.SDK_INT < Build.VERSION_CODES.GINGERBREAD) {  
            float tmp_width = opt_display_width*2 / metrics.density;

            opt_display_width_tmp_scroll = (int)tmp_width;

            scrollable_available = true;
        } else {
            opt_display_width_tmp_original = opt_display_width;

            scrollable_available = false;
        }

但它只适用于Android 2.3.6版本,以及我如何获得其他与android版本4的参数3

0 个答案:

没有答案
相关问题