http://blog.csdn.net/eclipsexys/article/details/46349721
Google Material Design 中文版翻译
http://wiki.jikexueyuan.com/project/material-design/
https://github.com/chrisbanes/cheesesquare
https://github.com/wasabeef/awesome-android-ui
http://www.cnblogs.com/tiantianbyconan/p/4116304.html
水波纹效果(不太好用哎。。。)
https://github.com/traex/RippleEffect
1)解决这个view抢事件:
rippleview_root.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
lockRippleViewEvent = false;
}
});
rippleview_root.setOnRippleCompleteListener(new RippleViewByCZ.OnRippleCompleteListener() {
@Override
public void onComplete(RippleViewByCZ rippleView) {
if(lockRippleViewEvent) return;
Intent intent = new Intent();
intent.setClass(mContext, StudyCircleDetailActivity2.class);
intent.putExtra("head_data", (Serializable) mData.get(position));
mContext.startActivity(intent);
}
});
基于Material Design设计的分享文字图片的APP
http://blog.csdn.net/tyk0910/article/details/50894850
https://github.com/chenyangcun/MaterialDesignExample
Android5.0+(CollapsingToolbarLayout)
组织View,让View与View之间相互协调。
CollapsingToolbarLayout可以与RecyclerView结合使用,但是必须与RecyclerView在同一布局中使用,RecyclerView不可通过Fragment片断加入。否则无法实现效果。
http://www.cnblogs.com/huolongluo/p/6214065.html (Demo亲测可用)
http://www.open-open.com/lib/view/open1437312265428.html (详细)
http://www.open-open.com/lib/view/open1438265746378.html
http://www.wtoutiao.com/p/1ca8RpC.html
CoordinatorLayout之注意事项
http://blog.csdn.net/hunanqi/article/details/52597675
EditText
http://www.programcreek.com/java-api-examples/index.php?api=android.support.design.widget.TextInputLayout
http://wiki.jikexueyuan.com/project/material-design/whatis-material-design/material-properties.html
https://github.com/lightSky/Awesome-MaterialDesign
https://github.com/lightSky/Awesome-MaterialDesign
0 条评论