Android自定义组合布局,Android 流式布局 + 自定义组合控件

自定义组合控件

package yanjupeng.bawei.com.day09.two;

import android.content.Context;

import android.util.AttributeSet;

import android.util.Log;

import android.view.LayoutInflater;

import android.view.View;

import android.widget.EditText;

import android.widget.LinearLayout;

import android.widget.TextView;

import yanjupeng.bawei.com.day09.R;

public class TwoLayout extends LinearLayout {

public TextView textView;

public EditText editText;

public TwoLiu twoLiu;

public LinearLayout linearLayout;

public TwoLayout(Context context) {

super(context);

}

public TwoLayout(final Context context, AttributeSet attrs) {

super(context, attrs);

View view = LayoutInflater.from(context).inflate(R.layout.twolayout , this);

textView = view.findViewById(R.id.two_text_id);

editText = view.findViewById(R.id.two_ed_id);

twoLiu = view.findViewById(R.id.two_liu_id);

linearLayout = view.findViewById(R.id.two_layout_id);

textView.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

String string = editText.getText().toString();

Log.e("tag" , "textView ====="+string );

final TextView textView = new TextView(context);

textView.setTag(string);

textView.setText(string);

textView.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

Log.e("tag" , "textView =====" + textView.getTag().toString());

}

});

twoLiu.addView(textView);

linearLayout.requestLayout();

}

});

}

public TwoLayout(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

}

xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/two_layout_id"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

>

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

>

android:id="@+id/two_ed_id"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:layout_weight="1"

/>

android:id="@+id/two_text_id"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="搜索"

android:textSize="20sp"

android:background="#4ff"

/>

android:id="@+id/two_liu_id"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="#ccc">

activity

package yanjupeng.bawei.com.day09.two;

import android.support.v7.app.AppCompatActivity;

import android.os.Bundle;

import yanjupeng.bawei.com.day09.R;

public class TwoActivity extends AppCompatActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_two);

}

}

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

tools:context=".two.TwoActivity">

android:layout_width="match_parent"

android:layout_height="match_parent">

流式布局

package yanjupeng.bawei.com.day09.two;

import android.content.Context;

import android.util.AttributeSet;

import android.util.Log;

import android.view.ViewGroup;

public class TwoLiu extends ViewGroup {

public int mLeftMargin = 20;

public int mTopMargin = 20;

public TwoLiu(Context context) {

super(context);

}

public TwoLiu(Context context, AttributeSet attrs) {

super(context, attrs);

}

public TwoLiu(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

Log.e("tag" , "onMeasure");

measureChildren(widthMeasureSpec ,heightMeasureSpec);

int leftMargin = mLeftMargin;

int topMargin = mTopMargin;

int sizeWidth = MeasureSpec.getSize(widthMeasureSpec);

int modelWidth = MeasureSpec.getMode(widthMeasureSpec);

int sizeHeigth = MeasureSpec.getSize(heightMeasureSpec);

int modelHeigth = MeasureSpec.getMode(heightMeasureSpec);

switch (modelHeigth){

case MeasureSpec.AT_MOST:

int measuredHeight = 0 ;

for (int j = 0 ; j < getChildCount() ; j ++){

int measuredWidth = getChildAt(j).getMeasuredWidth();

measuredHeight = getChildAt(j).getMeasuredHeight();

if (leftMargin + measuredWidth + mLeftMargin > getMeasuredWidth()){

leftMargin = mLeftMargin;

topMargin += measuredHeight + mTopMargin;

}

leftMargin += measuredWidth + mLeftMargin;

}

topMargin += measuredHeight + mTopMargin;

break;

}

setMeasuredDimension(sizeWidth , topMargin);

}

@Override

protected void onLayout(boolean changed, int l, int t, int r, int b) {

Log.e("tag" , "onLayout");

int leftMargin = mLeftMargin;

int topmargin = mTopMargin;

for (int j = 0 ; j < getChildCount() ; j ++){

int measuredHeight = getChildAt(j).getMeasuredHeight();

int measuredWidth = getChildAt(j).getMeasuredWidth();

if (leftMargin + measuredWidth + mLeftMargin > getWidth()){

leftMargin = mLeftMargin;

topmargin += measuredHeight + mTopMargin;

getChildAt(j).layout(leftMargin , topmargin , measuredWidth + leftMargin , measuredHeight + topmargin );

}else {

getChildAt(j).layout(leftMargin , topmargin , measuredWidth + leftMargin ,measuredHeight + topmargin );

}

leftMargin += measuredWidth + mLeftMargin;

}

}

}

标签:控件,自定义,int,context,import,Android,leftMargin,public,android

来源: https://blog.csdn.net/qq_42886907/article/details/89064858

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

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

相关文章

freemark循环map_freemarker中循环map根据key值得value 报错

[#list uMap?keys as key]${uMap[key]}[/#list]Map uMap new HashMap();uMap.put(1,"zhangsan");uMap.put(2,"lisi");model.addAttribute("uMap", uMap);严重: Servlet.service() for servlet springMVC threw exceptionFreeMarker template e…

Lua的垃圾回收机制详解

Lua 是一种轻量级的编程语言&#xff0c;广泛用于嵌入到其他应用程序中&#xff0c;尤其是在游戏开发领域。Lua 的内存管理机制采用了自动垃圾收集&#xff08;Garbage Collection&#xff09;的方法。以下是Lua内存管理的一些关键方面&#xff1a; 垃圾收集原理概述 Lua 使用…

2020年AI怎么发展?听加州大学、谷歌、英伟达、IBM怎么说

来源&#xff1a;机器之心AI 领域最杰出的头脑如何总结 2019 年技术进展&#xff0c;又如何预测 2020 年发展趋势呢&#xff1f;本文介绍了 Soumith Chintala、Celeste Kidd、Jeff Dean 等人的观点。人工智能不是将要改变世界&#xff0c;而是正在改变世界。在新年以及新的十年…

python线程池官网-Python线程池下载txt

下次试试用scrapy模块 # codingutf-8 import requests import threadpool def download_file(i): """下载文件""" download_url f"https://www.txt2016.com/e/DownSys/xiazai/?classid1&pathid0&id{i}" file requests.get(…

select样式的重写

select {/*统一边框*/border: solid 1px #000;/*将默认的select选择框样式清除*/appearance:none;//这个样式就是清楚他的下拉按钮的默认样式-moz-appearance:none;-webkit-appearance:none;/*替换选择框的最右侧显示小箭头图片*/background: url("http://****.png")…

ip打包后如何加入 xilinx_科普!插上USB设备后电脑是怎么识别的呢?

欢迎FPGA工程师加入官方微信技术群每次当插上鼠标或者U盘的时候&#xff0c;电脑是怎么知道是什么设备的呢&#xff1f;这里用到的就是枚举了。枚举&#xff0c;其实就是让HOST认识这个USB涉笔&#xff0c;并且为该设备准备资源&#xff0c;建立好主机和设备之间的数据传递机制…

两院院士评选2019年中国、世界十大科技进展新闻揭晓

来源&#xff1a;科学网由中国科学院、中国工程院主办&#xff0c;中国科学院学部工作局、中国工程院办公厅、中国科学报社承办&#xff0c;中国科学院院士和中国工程院院士投票评选的2019年中国十大科技进展新闻、世界十大科技进展新闻&#xff0c;1月11日在京揭晓。此项年度评…

android炫酷叼ui,XUI: 一个简洁而优雅的Android原生UI框架,解放你的双手!

XUI一个简洁而又优雅的Android原生UI框架&#xff0c;解放你的双手&#xff01;还不赶紧点击使用说明文档&#xff0c;体验一下吧&#xff01;涵盖绝大部分的UI组件&#xff1a;TextView、Button、EditText、ImageView、Spinner、Picker、Dialog、PopupWindow、ProgressBar、Lo…

笔记本电脑麦克风在哪里_定制款MacBook Pro? 13.3 体验 “旧”时代的 One Pecie_笔记本电脑...

2020-11-11 13:19:377点赞18收藏18评论9月28日 - 11月12日&#xff0c;参与#双11购物攻略#征稿活动&#xff0c;赢取苹果全家桶8888元超级锦鲤大奖&#xff01;瓜分十万金币&#xff0c;值得买周边一次全攒齐&#xff01;品类、品牌、场景、价格&#xff0c;快来分享你的购物心…

android 拍照屏幕大小,Android Camera 找出屏幕的最佳尺寸大小

大家平时都会调用到Camera 这个API&#xff0c;在设置Camera.Paramera的参数的时候&#xff0c;有一个预览大小。也就是&#xff1a;setPreviewSize(int width, ing height)这个相机的大小不能随便设置&#xff0c;如果设置了不可接受的值&#xff0c;程序会崩溃掉。现在给大家…

Shell脚本-自动化部署反向代理、WEB、nfs

部署nginx反向代理三个web服务&#xff0c;调度算法使用加权轮询(由于物理原因只开启两台服务器) AutoNginxNfsService.sh #/bin/bash systemctl status nginx if(($?4))then yum install -y nginxif(($?0))then#echo Yes!systemctl start nginxif(($?0))thenecho "Con…

a76比a73强多少_arm的a73和a72同上10nm,谁强?

说到ARM A72和A73 就不得不说一个事&#xff0c;A73相比A72并不是一个简单的升级&#xff0c;A72和A73不是同一个团队做的。A73其实有点像当初的A17&#xff0c;整体微架构、流水线、宽度设计都与之类似。A73和A72相比没有保留A72的三发射&#xff0c;改用了双发射。ARM的宣传A…

杨振宁眼中的物理学之美

来源&#xff1a;EETOP本文是当代物理学大师杨振宁教授1997年1月17日在香港中华科学与社会协进会与香港中文大学主办的演讲会上的演讲词&#xff0c;讲题原为“科学工作有没有风格”。转载于香港《二十一世纪》杂志1997 年 4 月号&#xff0c;总第40期&#xff1b;也收入杨振宁…

wechat电脑版_【学术工具】如何快速、免费翻译英文材料?原创·WeChat公号:本硕博资讯...

★学术工具英文材料免费翻译如何快速、免费翻译英文材料&#xff1f;原创WeChat公号&#xff1a;本硕博资讯分享一些亲测可用的资源&#xff0c;仅用于学术交流。建议大家试着自己翻译&#xff0c;提升英语水平。版权声明&#xff1a;如有侵权问题请通过邮箱或者公众号后台私信…

float php 运算_系统的讲解 - PHP 浮点数高精度运算

概述记录下&#xff0c;工作中遇到的坑 ...关于 PHP 浮点数运算&#xff0c;特别是金融行业、电子商务订单管理、数据报表等相关业务&#xff0c;利用浮点数进行加减乘除时&#xff0c;稍不留神运算结果就会出现偏差&#xff0c;轻则损失几十万&#xff0c;重则会有信誉损失&am…

20155234 2016-2017-2 《Java程序设计》第5周学习总结

20155234 2016-2017-2 《Java程序设计》第5周学习总结 教材学习内容总结 Java中所有错误都会被打包为对象&#xff0c;运用try、catch&#xff0c;可以在错误发生时显示友好的错误信息。运用try、catch&#xff0c;还可以在捕捉处理错误之后&#xff0c;尝试恢复程序正常执行流…

harmonyos 编译打包生成app,鸿蒙(HarmonyOS)App开发入门(2)—运行HelloWorld

前言为确保HarmonyOS应用的完整性&#xff0c;HarmonyOS通过数字证书和授权文件来对应用进行管控&#xff0c;只有签名过的HAP(编译产物&#xff0c;后面章节详细讲述&#xff0c;本章主要讲证书申请到代码运行到真机)才允许安装到设备上进行运行(如果不带签名信息&#xff0c;…

【周末阅读】你不得不知道的10大AI赋能行业,你身边都能找到!

来源&#xff1a;青岛智能产业技术研究院智能产业 前沿高地【导读】AI正突破诸多技术瓶颈&#xff0c;在市政、交通、医疗、等行业横向渗透&#xff0c;逐步走入大众日常生活中。国务院印发的《新一代人工智能发展规划》中指出&#xff0c;2020年人工智能产业规模将超过1500亿元…

bindresult必须在哪个位置_管道疏通剂哪个牌子好 管道疏通机使用方法有哪些

平时大家不用的水或者一些物品&#xff0c;在处理的时候应该都会倒到下水道之中&#xff0c;而下水道确实具备着这一种效果&#xff0c;但很多时候&#xff0c;下水道往往会因为口比较小&#xff0c;而被一些物品所堵塞&#xff0c;这样一来&#xff0c;影响上其实会非常大&…

js 递归查询所有的叶子结点_json树递归js查询json父子节点

上代码&#xff0c;直接另存为html打开&#xff0c;看console控制台就可以看到效果了json-queryvar json [{"MenuCode": "S0-3100-00","MenuAction": "TelPay","MenuName": "通讯费","subMenu": [{&qu…