摘要: CardView 继承自 FrameLayout,卡片样式的布局,其有设置圆角及阴影的属性。android:elevation:阴影android:cardCornerRadius:圆角半径android:cardBackgroundColor:卡片颜色 阅读全文
posted @ 2015-01-29 12:23 Timtanghh 阅读(319) 评论(0) 推荐(0)
摘要: RecyclerView是Google于5.0后新推出的控件,用于替代ListView,在ListView中convertView是复用的,而在RecyclerView中,是缓存的ViewHolder对象,所以在RecyclerView中有一个onCreateViewHolder方法,将it... 阅读全文
posted @ 2015-01-29 12:07 Timtanghh 阅读(1404) 评论(0) 推荐(0)
摘要: 判断网络连接类型ConnectivityManager connMgr =(ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo activeInfo = connMgr.getAc... 阅读全文
posted @ 2015-01-29 10:52 Timtanghh 阅读(162) 评论(0) 推荐(0)