java把控件跑挂了_Java代码动态修改 ConstraintLayout 内控件布局的辅助类

##上图

0818b9ca8b590ca3270a3433284dd417.png

ConstraintUtil.java

import android.support.annotation.IdRes;

import android.support.constraint.ConstraintLayout;

import android.support.constraint.ConstraintSet;

import android.transition.TransitionManager;

/**

* Created by xiaolei on 2017/9/8.

*/

public class ConstraintUtil

{

private ConstraintLayout constraintLayout;

private ConstraintBegin begin;

private ConstraintSet applyConstraintSet = new ConstraintSet();

private ConstraintSet resetConstraintSet = new ConstraintSet();

public ConstraintUtil(ConstraintLayout constraintLayout)

{

this.constraintLayout = constraintLayout;

resetConstraintSet.clone(constraintLayout);

}

/**

* 开始修改

* @return

*/

public ConstraintBegin begin()

{

synchronized (ConstraintBegin.class)

{

if (begin == null)

{

begin = new ConstraintBegin();

}

}

applyConstraintSet.clone(constraintLayout);

return begin;

}

/**

* 带动画的修改

* @return

*/

public ConstraintBegin beginWithAnim()

{

TransitionManager.beginDelayedTransition(constraintLayout);

return begin();

}

/**

* 重置

*/

public void reSet()

{

resetConstraintSet.applyTo(constraintLayout);

}

/**

* 带动画的重置

*/

public void reSetWidthAnim()

{

TransitionManager.beginDelayedTransition(constraintLayout);

resetConstraintSet.applyTo(constraintLayout);

}

public class ConstraintBegin

{

/**

* 清除关系

* 注意:这里不仅仅会清除关系,还会清除对应控件的宽高为 w:0,h:0

* @param viewIds

* @return

*/

public ConstraintBegin clear(@IdRes int... viewIds)

{

for (int viewId : viewIds)

{

applyConstraintSet.clear(viewId);

}

return this;

}

/**

* 清除某个控件的,某个关系

* @param viewId

* @param anchor

* @return

*/

public ConstraintBegin clear(int viewId,int anchor)

{

applyConstraintSet.clear(viewId,anchor);

return this;

}

/**

* 为某个控件设置 margin

* @param viewId 某个控件ID

* @param left marginLeft

* @param top marginTop

* @param right marginRight

* @param bottom marginBottom

* @return

*/

public ConstraintBegin setMargin(@IdRes int viewId, int left, int top, int right, int bottom)

{

setMarginLeft(viewId,left);

setMarginTop(viewId,top);

setMarginRight(viewId,right);

setMarginBottom(viewId,bottom);

return this;

}

/**

* 为某个控件设置 marginLeft

* @param viewId 某个控件ID

* @param left marginLeft

* @return

*/

public ConstraintBegin setMarginLeft(@IdRes int viewId, int left)

{

applyConstraintSet.setMargin(viewId, ConstraintSet.LEFT, left);

return this;

}

/**

* 为某个控件设置 marginRight

* @param viewId 某个控件ID

* @param right marginRight

* @return

*/

public ConstraintBegin setMarginRight(@IdRes int viewId, int right)

{

applyConstraintSet.setMargin(viewId, ConstraintSet.RIGHT, right);

return this;

}

/**

* 为某个控件设置 marginTop

* @param viewId 某个控件ID

* @param top marginTop

* @return

*/

public ConstraintBegin setMarginTop(@IdRes int viewId, int top)

{

applyConstraintSet.setMargin(viewId, ConstraintSet.TOP, top);

return this;

}

/**

* 为某个控件设置marginBottom

* @param viewId 某个控件ID

* @param bottom marginBottom

* @return

*/

public ConstraintBegin setMarginBottom(@IdRes int viewId, int bottom)

{

applyConstraintSet.setMargin(viewId, ConstraintSet.BOTTOM, bottom);

return this;

}

/**

* 为某个控件设置关联关系 left_to_left_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Left_toLeftOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.LEFT, endId, ConstraintSet.LEFT);

return this;

}

/**

* 为某个控件设置关联关系 left_to_right_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Left_toRightOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.LEFT, endId, ConstraintSet.RIGHT);

return this;

}

/**

* 为某个控件设置关联关系 top_to_top_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Top_toTopOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.TOP, endId, ConstraintSet.TOP);

return this;

}

/**

* 为某个控件设置关联关系 top_to_bottom_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Top_toBottomOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.TOP, endId, ConstraintSet.BOTTOM);

return this;

}

/**

* 为某个控件设置关联关系 right_to_left_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Right_toLeftOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.RIGHT, endId, ConstraintSet.LEFT);

return this;

}

/**

* 为某个控件设置关联关系 right_to_right_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Right_toRightOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.RIGHT, endId, ConstraintSet.RIGHT);

return this;

}

/**

* 为某个控件设置关联关系 bottom_to_bottom_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Bottom_toBottomOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.BOTTOM, endId, ConstraintSet.BOTTOM);

return this;

}

/**

* 为某个控件设置关联关系 bottom_to_top_of

* @param startId

* @param endId

* @return

*/

public ConstraintBegin Bottom_toTopOf(@IdRes int startId, @IdRes int endId)

{

applyConstraintSet.connect(startId, ConstraintSet.BOTTOM, endId, ConstraintSet.TOP);

return this;

}

/**

* 为某个控件设置宽度

* @param viewId

* @param width

* @return

*/

public ConstraintBegin setWidth(@IdRes int viewId, int width)

{

applyConstraintSet.constrainWidth(viewId, width);

return this;

}

/**

* 某个控件设置高度

* @param viewId

* @param height

* @return

*/

public ConstraintBegin setHeight(@IdRes int viewId, int height)

{

applyConstraintSet.constrainHeight(viewId, height);

return this;

}

/**

* 提交应用生效

*/

public void commit()

{

applyConstraintSet.applyTo(constraintLayout);

}

}

}

使用

public void onApplyClick(View view)

{

constraintUtil = new ConstraintUtil(constraintLayout);

ConstraintUtil.ConstraintBegin begin = constraintUtil.beginWithAnim();

begin.clear(R.id.button1,R.id.button2,R.id.button3);

begin.Left_toLeftOf(R.id.button1,R.id.main);

begin.Left_toRightOf(R.id.button2,R.id.button1);

begin.Right_toLeftOf(R.id.button2,R.id.button3);

begin.Right_toRightOf(R.id.button3,R.id.main);

begin.setWidth(R.id.button1, ConstraintSet.WRAP_CONTENT);

begin.setWidth(R.id.button2, ConstraintSet.WRAP_CONTENT);

begin.setWidth(R.id.button3, ConstraintSet.WRAP_CONTENT);

begin.setHeight(R.id.button1, ConstraintSet.WRAP_CONTENT);

begin.setHeight(R.id.button2, ConstraintSet.WRAP_CONTENT);

begin.setHeight(R.id.button3, ConstraintSet.WRAP_CONTENT);

begin.commit();

}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/327753.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Vue动态组件

转载自 Vue动态组件 在动态组件上使用 keep-alive 我们之前曾经在一个多标签的界面中使用 is 特性来切换不同的组件&#xff1a; <component v-bind:is"currentTabComponent"></component> 当在这些组件之间切换的时候&#xff0c;你有时会想保持这些组…

ASP.NET Core Kestrel部署HTTPS

ASP.NET Core配置 Kestrel部署HTTPS。现在大部分网站已经部署HTTPS&#xff0c;大家对于安全越来越重视。 今天简单介绍一下ASP.NET Core 部署HTTPS&#xff0c;直接通过配置Kestrel。大家也可以通过前置Nginx来部署HTTPS。 下面直接进入正题。 新建项目并添加引用 新建一个ASP…

配置phython环境

参考资料 https://www.runoob.com/python/python-install.html https://www.cnblogs.com/huangbiquan/p/7784533.html Python下载 Python最新源码&#xff0c;二进制文档&#xff0c;新闻资讯等可以在Python的官网查看到&#xff1a; Python官网&#xff1a;https://www.py…

ASP.NET Core 之 Identity 入门(三)

前言 在上一篇文章中&#xff0c;我们学习了 CookieAuthentication 中间件&#xff0c;本篇的话主要看一下 Identity 本身。 最早2005年 ASP.NET 2.0 的时候开始&#xff0c; Web 应用程序在处理身份验证和授权有了很多的变化&#xff0c;多了比如手机端&#xff0c;平板等&…

玩物得志Java笔试题_代码规范利器-CheckStyle

本期内容分为五个部分&#xff0c;阅读时长预估7分钟&#xff1a;使用背景CheckStyle使用意义CheckStyle安装与使用CheckStyle检查配置示例落地使用情况及效果使用背景玩物得志目前还处在一个狂奔业务的时期&#xff0c;开发一般都全力支撑业务的快速奔跑&#xff0c;没有太多的…

Json交互处理

Json交互处理 JSON简介 JSON(JavaScript Object Notation, JS 对象标记) 是一种轻量级的数据交换格式&#xff0c;目前使用特别广泛。采用完全独立于编程语言的文本格式来存储和表示数据。简洁和清晰的层次结构使得 JSON 成为理想的数据交换语言。易于人阅读和编写&#xff0…

利用 async amp; await 的异步编程

一、异步编程的简介 通过使用异步编程&#xff0c;你可以避免性能瓶颈并增强应用程序的总体响应能力。 Visual Studio 2012 引入了一个简化的方法&#xff0c;异步编程&#xff0c;在 .NET Framework 4.5 和 Windows 运行时利用异步支持。编译器可执行开发人员曾进行的高难度工…

xml配置文件显示为文本文件问题

idea 新建的xml文件显示为文本问题 原因: 由于新建不带后缀名的文件的时候 idea会相对智能的让你选择 文件规则 解决: settings->File types 中找到对应的文件类型显示 ,把 你不小心添加的 正则 给去除就好了, 我这里的配置如下图 可以自己进行设置&#xff08;&…

.NET应用迁移到.NET Core--调查案例

上周已经发过三篇文章讲述做.NET 应用迁移到.NET Core的一般方法&#xff0c;具体内容请看&#xff1a; .NET应用迁移到.NET Core&#xff08;一&#xff09; .NET应用迁移到.NET Core&#xff08;二&#xff09;风险评估 .NET应用迁移到.NET Core&#xff08;三&#xff09;从…

Ajax前后端对接---Springmvc

Springmvc实现 实体类user Data AllArgsConstructor NoArgsConstructor public class User {private String name;private int age;private String sex;}我们来获取一个集合对象&#xff0c;展示到前端页面 RequestMapping("/a2") public List<User> ajax2(…

缓存在大型网站架构中的应用

缓存的基本知识 在整个计算机体系构造中&#xff08;无论是硬件层面还是软件层面&#xff09;&#xff0c;缓存都是无处不在的。 在计算机硬件构造中&#xff0c;由于两种介质的速度不匹配&#xff0c;高速介质在和低速介质交互时速度趋向低速方&#xff0c;这就导致了高速介质…

win10安装dockerx docker的常见命令 可以子腾讯云上做做练习

参考资料 https://www.jianshu.com/p/e8427d12b3e0 百度搜索 docker hub 可以查找 你需要的镜像 https://hub.docker.com/?utm_sourcegetting_started_guide&utm_mediumembedded_Windows&utm_campaignfind_whalesay https://blog.csdn.net/zzq060143/article/de…

Jexus 5.8.2 正式发布为Asp.Net Core进入生产环境提供平台支持

Jexus 是一款运行于 Linux 平台&#xff0c;以支持 ASP.NET、PHP 为特色的集高安全性和高性能为一体的 WEB 服务器和反向代理服务器。最新版 5.8.2 已经发布&#xff0c;有如下更新&#xff1a; 1&#xff0c;现在大部分网站已经部署HTTPS&#xff0c;大家对于安全越来越重视&…

php移动代码,移动专区周级收录如何提交 复制这段php代码即可

今天我们来讲解下“移动专区的周级提交”很多朋友都在使用移动专区(之前的熊掌号)进行提交&#xff0c;但是天级提交只给10个额度&#xff0c;需要我们不断提交10个才会有所增长&#xff0c;但是我们可以使用“周级提交”可以直接享受5万的数据提交&#xff0c;对于我们站点的收…

搭建高可用的rabbitmq集群 + Mirror Queue + 使用C#驱动连接

我们知道rabbitmq是一个专业的MQ产品&#xff0c;而且它也是一个严格遵守AMQP协议的玩意&#xff0c;但是要想骚&#xff0c;一定需要拿出高可用的东西出来&#xff0c;这不本篇就跟大家说 一下cluster的概念&#xff0c;rabbitmq是erlang写的一个成品&#xff0c;所以知道如何…

Mybatis+mysql动态分页查询数据案例——配置映射文件(HouseDaoMapper.xml)

<?xml version"1.0" encoding"UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" > <mapper namespace"houseDao" ><result…

手机钉钉在进行视频会议时怎么录屏

https://www.iefans.net/info/v1037168.html 钉钉在进行视频会议时怎么录屏 编辑&#xff1a;秩名2020-03-24 10:14:52 钉钉 类型&#xff1a;效率办公 语言&#xff1a;简体中文 安卓下载 扫一扫下载游戏 钉钉是一款很好用的学习办公软件&#xff0c;它的工呢很多&#xf…

Vue3学习(后端开发)

目录 一、安装Node.js 二、创建Vue3工程 三、用VSCode打开 四、源代码目录src 五、入门案例——手写src 六、测试案例 七、ref和reactive的区别 一、安装Node.js 下载20.10.0 LTS版本 https://nodejs.org/en 使用node命令检验安装是否成功 node 二、创建Vue3工程 在…

微软Ignite大会约起来

今年的微软Ignite技术大会今天开始了&#xff0c;要好好学习哦&#xff0c;提供直播地址&#xff0c;通过阅读原文链接可以直达直播地址 http://soft.zdnet.com.cn/special/microsoft_ignite_2016。 大会亮点 创新 IT 技术飞速发展促发了更多行业创新&#xff0c;因此您和您的企…