上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 64 下一页
摘要: Palette用来从图片资源中获取颜色内容。下面是个对颜色值使用的工具类:public class PaletteUtils { public static int getColorWithDefault(Palette palette, int defaultColor) { ... 阅读全文
posted @ 2015-11-21 22:10 西北野狼 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 系统提供默认的三种主题样式@android:style/Theme.Material (dark version) @android:style/Theme.Material.Light (light version) @android:style/Theme.Material... 阅读全文
posted @ 2015-11-21 21:36 西北野狼 阅读(235) 评论(0) 推荐(0) 编辑
摘要: ScrollView是解决布局过长的情况下使用,一遍其下面会有个顶部布局,我项目里面是RelativeLayout,但是RelativeLayout无论设置android:layout_height="wrap_content"还是android:layout_height="match_conte... 阅读全文
posted @ 2015-11-20 14:40 西北野狼 阅读(955) 评论(0) 推荐(0) 编辑
摘要: AActivity跳转BActivity ,AActivity设置lauchmode = "SingleTask"的话,在getIntent无法获取BActivity里面的内容,无论是通过Intent跳转还是BActivity里面setResult后在AActivity的onActivityForR... 阅读全文
posted @ 2015-11-02 11:52 西北野狼 阅读(331) 评论(0) 推荐(0) 编辑
摘要: View树和UI界面架构图UI界面架构图:android视图最外层是一个window对象。phoneWindow来实现。phoneWindow将一个decorView作为整个布局的根view.屏幕分为TitleView和ContentView.ContentView的根布局为framelayout.... 阅读全文
posted @ 2015-11-01 20:23 西北野狼 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 今天项目中涉及fragment中嵌套多个fragment,但是要根据tag去展示对应的fragment,而不是默认展示的第一个fragment,如果使用activity很容易想到onpause(),onResume()中进行处理,但是你会发现fragment的onpause和onresume只调用一... 阅读全文
posted @ 2015-10-31 16:10 西北野狼 阅读(3617) 评论(0) 推荐(0) 编辑
摘要: public class MyListView extends ListView { public MyListView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defS... 阅读全文
posted @ 2015-10-24 14:23 西北野狼 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 下面是重写ArrayList,并保证ChooseCars里面alpha字段不重复的例子public class DistinctList extends ArrayList{ private static Map distinct_map = new HashMap(); pr... 阅读全文
posted @ 2015-10-21 08:59 西北野狼 阅读(795) 评论(0) 推荐(0) 编辑
摘要: 平时效果:按下效果:selector代码: 阅读全文
posted @ 2015-10-19 15:23 西北野狼 阅读(1487) 评论(2) 推荐(0) 编辑
摘要: 方案1:经过验证,可以完美实现Glide.with(context).load(url).asBitmap().centerCrop().into(new BitmapImageViewTarget(imageView) { @Override protected voi... 阅读全文
posted @ 2015-10-17 09:57 西北野狼 阅读(21315) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 64 下一页