w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
Android ConstraintLayout 布局
开始阅读
下载APP,阅读更畅快
教程说明:
介绍Android ConstraintLayout 的系列教程,更多其他文章可以关注作者博客:
https://biaomingzhong.github.io
教程目录:
ConstraintLayout基础
约束(constraints)
Chains链
参照线guidelines
ConstraintLayout基础系列之尺寸横纵比 dimensions
深入系列
代替常见布局
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
ConstraintLayout基础
约束(constraints)
Chains链
参照线guidelines
ConstraintLayout基础系列之尺寸横纵比 dimensions
深入系列
代替常见布局
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }