Button and Drawable

如何获取Button中的Drawable Drawable img1 = button.getCompoundDrawables()[0]; 与其他Drawable比较 Drawable img2 = getResources().getDrawable(R.drawable.name); Bitmap bitmap1 = ((BitmapDrawable)img1).getBitmap(); Bitmap bitmap2 = ((BitmapDrawable)img2).getBitmap(); if(bitmap1==bitmap2){ ... }

February 10, 2014

Blank page on android application startup

现象: 打开应用时先出现1秒左右的带有标题的空白页面,然后进入LAUNCHER Activity 原因分析: 在自定义的主题中,设置的父主题,如: <style name="customTheme" parent="android:Theme.Light"> 解决方法: 将主题设置为android:Theme.Wallpaper <style name="customTheme" parent="android:Theme.Wallpaper">

December 2, 2013