Android动态添加view设置view大小(宽高)

动态生成view并添加到布局开源框架:Dynamico

GitHub - jelic98/dynamico: Android library for inflating dynamic layouts in runtime based on JSON configuration fetched from server

第一种:ViewGroup在添加子view的时候设置layoutParams

public static View generalView(Activity context) {NestedScrollView scrollView = new NestedScrollView(context);//ScrollView加上android:fillViewport=“true”,当子view小于ScrollView高度时就会占满父ViewscrollView.setFillViewport(true);FrameLayout frameLayout = new FrameLayout(context);//控制视图背景frameLayout.setBackgroundColor(context.getResources().getColor(android.R.color.background_dark, null));GuiTextView titleTextView = new GuiTextView(context);titleTextView.setText(title);GuiTextView contentView = new GuiTextView(context);contentView.setText(text);//contentView.setMaxEms(30);GuiImageView imageView = new GuiImageView(context);imageView.setImageDrawable(context.getDrawable(R.mipmap.ic_car));//RecyclerViewGuiRecyclerView recyclerView = new GuiRecyclerView(context);GuiListAdapter listAdapter = new GuiListAdapter();recyclerView.setAdapter(listAdapter);// 将控件加入到当前布局中frameLayout.addView(titleTextView, ViewUtils.getLayoutParam(context,100, 20, 100, 10));frameLayout.addView(contentView, ViewUtils.getLayoutParam(context,220, 120, 20, 50));frameLayout.addView(imageView, ViewUtils.getLayoutParam(context,220, 124, 20, 180));frameLayout.addView(recyclerView, ViewUtils.getLayoutParam(context,220, 120, 20, 320));ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);scrollView.addView(frameLayout);return scrollView;}

第二种:子view本身设置layoutParams

 public static View generalMediaView(Activity context) {NestedScrollView scrollView = new NestedScrollView(context);//ScrollView加上android:fillViewport=“true”,当子view小于ScrollView高度时就会占满父ViewscrollView.setFillViewport(true);FrameLayout frameLayout = new FrameLayout(context);//控制视图背景frameLayout.setBackgroundColor(context.getResources().getColor(android.R.color.background_dark, null));GuiTextView titleTextView = new GuiTextView(context);titleTextView.setText(title);titleTextView.setBackgroundColor(context.getResources().getColor(android.R.color.holo_orange_light, null));FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(DisplayUtil.dip2px(context, 200), DisplayUtil.dip2px(context, 40));layoutParams.setMargins(DisplayUtil.dip2px(context, 50), DisplayUtil.dip2px(context, 100), 0, 0);titleTextView.setLayoutParams(layoutParams);// 将控件加入到当前布局中frameLayout.addView(titleTextView);scrollView.addView(frameLayout);return scrollView;}

DisplayUtil.java

public class DisplayUtil {public static int getScreenWidthByPix(Context context) {DisplayMetrics dm = context.getResources().getDisplayMetrics();return dm.widthPixels;}public static int getScreenWidthByDp(Context context) {DisplayMetrics dm = context.getResources().getDisplayMetrics();return (int) (dm.widthPixels / dm.density);}public static int getScreenHeightByPix(Context context) {DisplayMetrics dm = context.getResources().getDisplayMetrics();return dm.heightPixels;}public static int getRealHeightByPix(Context context) {WindowManager mWindowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);if (mWindowManager == null) {return getScreenHeightByPix(context);}Display mDisplay = mWindowManager.getDefaultDisplay();DisplayMetrics mDisplayMetrics = new DisplayMetrics();mDisplay.getRealMetrics(mDisplayMetrics);return mDisplayMetrics.heightPixels;}public static int getScreenHeightByDp(Context context) {DisplayMetrics dm = context.getResources().getDisplayMetrics();return (int) (dm.heightPixels / dm.density);}/*** 根据手机的分辨率从 dp 的单位 转成为 px(像素)*/public static int dip2px(Context context, float dpValue) {final float scale = context.getResources().getDisplayMetrics().density;return (int) (dpValue * scale + 0.5f);}/*** 根据手机的分辨率从 px(像素) 的单位 转成为 dp*/public static int px2dip(Context context, float pxValue) {return px2dip(context, pxValue, true);}/*** 根据手机的分辨率从 px(像素) 的单位 转成为 dp* isUp 向上取整*/public static int px2dip(Context context, float pxValue, boolean isUp) {final float scale = context.getResources().getDisplayMetrics().density;if (isUp) {return (int) (pxValue / scale + 0.5f);} else {return (int) (pxValue / scale);}}/*** 设置某个View的margin** @param view   需要设置的view* @param isDp   需要设置的数值是否为DP* @param left   左边距* @param right  右边距* @param top    上边距* @param bottom 下边距* @return*/public static ViewGroup.LayoutParams setViewMargin(View view, boolean isDp, int left, int right, int top, int bottom) {if (view == null) {return null;}int leftPx = left;int rightPx = right;int topPx = top;int bottomPx = bottom;ViewGroup.LayoutParams params = view.getLayoutParams();ViewGroup.MarginLayoutParams marginParams = null;//获取view的margin设置参数if (params instanceof ViewGroup.MarginLayoutParams) {marginParams = (ViewGroup.MarginLayoutParams) params;} else {//不存在时创建一个新的参数marginParams = new ViewGroup.MarginLayoutParams(params);}//根据DP与PX转换计算值if (isDp) {leftPx = px2dip(view.getContext(), left);rightPx = px2dip(view.getContext(), right);topPx = px2dip(view.getContext(), top);bottomPx = px2dip(view.getContext(), bottom);}//设置marginmarginParams.setMargins(leftPx, topPx, rightPx, bottomPx);view.setLayoutParams(marginParams);return marginParams;}@SuppressWarnings("deprecation")/*** 兼容4.0与4.1以上系统设置BackgroundDrawable方法不同*/public static void setBackgroundDrawableCompat(View view, Drawable drawable) {if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN) {view.setBackgroundDrawable(drawable);} else {view.setBackground(drawable);}}/*** 获取屏幕分辨率** @param context* @return*/public static String getStrScreenResolution(Application context) {DisplayMetrics dm = new DisplayMetrics();WindowManager windowManager = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);windowManager.getDefaultDisplay().getMetrics(dm);//display = getWindowManager().getDefaultDisplay();display.getMetrics(dm)(把屏幕尺寸信息赋值给DisplayMetrics dm);int width = dm.widthPixels;int height = dm.heightPixels;return width + "*" + height;}/*** 获取 是否是平板设备** @param context* @return true:平板,false:手机*/public static boolean isTabletDevice(Context context) {return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >=Configuration.SCREENLAYOUT_SIZE_LARGE;}/*** 修改屏幕当前亮度** @param context* @param brightness*/public static void setScreenBritness(Activity context, int brightness) {WindowManager.LayoutParams lp = context.getWindow().getAttributes();lp.screenBrightness = Float.valueOf(brightness) * (1f / 255f);context.getWindow().setAttributes(lp);}/*** 获取系统亮度** @return*/public static int getSystemBrightness(Activity context) {int systemBrightness = 0;try {systemBrightness = Settings.System.getInt(context.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS);} catch (Settings.SettingNotFoundException e) {e.printStackTrace();}return systemBrightness;}/*** 检测是否开启了自动亮度调整** @param activity* @return*/public static boolean isAutoBrightness(Activity activity) {try {int autoBrightness = Settings.System.getInt(activity.getContentResolver(),Settings.System.SCREEN_BRIGHTNESS_MODE);if (autoBrightness == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC) {return true;}} catch (Settings.SettingNotFoundException e) {e.printStackTrace();}return false;}/*** 关闭系统自动调节亮度** @param activity*/public static void closeAutoBrightness(Activity activity) {Settings.System.putInt(activity.getContentResolver(),Settings.System.SCREEN_BRIGHTNESS_MODE,Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);}/*** 打开自动调节亮度** @param activity*/public static void openAutoBrightness(Activity activity) {setScreenBritness(activity, -1);Settings.System.putInt(activity.getContentResolver(),Settings.System.SCREEN_BRIGHTNESS_MODE,Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC);}/*** 获取屏幕密度*/public static int getPixelRation(Context context) {DisplayMetrics dm = context.getResources().getDisplayMetrics();return dm.densityDpi;}}

ViewUtils.java

public class ViewUtils {public static FrameLayout.LayoutParams getLayoutParam(Context context, int width, int height, int startX, int startY) {int w = DisplayUtil.dip2px(context, width);int h = DisplayUtil.dip2px(context, height);int x = DisplayUtil.dip2px(context, startX);int y = DisplayUtil.dip2px(context, startY);FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(w, h);layoutParams.setMargins(x, y, 0, 0);return layoutParams;}
}

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

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

相关文章

pyinstaller 如何打包python 代码

本次文章主要介绍&#xff0c;pyinstaller 打包 python 常见的问题&#xff0c;以及解决办法 1、安装 pip install pyinstaller2、使用最全面的 spec 配置文件方法打包 介绍&#xff1a; root |_ test | |_ main.py |_custom_module |_config 如上&#xff1a; 在 root 下有…

List 集合手动分页

小伙伴们好&#xff0c;欢迎关注&#xff0c;一起学习&#xff0c;无限进步 为方便测试&#xff0c;可以直接在 controller 内添加一个方法&#xff0c;或者直接通过 main 方法测试 List 手动分页&#xff1a; GetMapping("/getUserInfo")public Map<String,Obje…

领腾讯云红包,可抵扣云服务器订单金额

在2024年腾讯云新春采购节优惠活动上&#xff0c;可以领取新年惊喜红包&#xff0c;打开活动链接 https://curl.qcloud.com/oRMoSucP 会自动弹出红包领取窗口&#xff0c;如下图&#xff1a; 腾讯云2024新春采购节红包领取 如上图所示&#xff0c;点击“领”红包&#xff0c;每…

信用卡选购要点

文章目录 额度银行联名卡年费福利其他 额度 一般四大行的信用卡审批门槛高&#xff0c;且发卡的额度偏低。 额度也可以通过后期的消费与规律还款获得持续提升。 银行 信用卡一般是网上办理相关业务&#xff0c;对线下网点依赖不大。但是所在城市有信用卡所属银行&#xff0…

【S32K3 MCAL配置】-1.1-GPIO配置及其应用-点亮LED灯(基于MCAL)

目录(共13页精讲,手把手教你S32K3从入门到精通) 实现的架构:基于MCAL层 前期准备工作: 1 创建一个FREERTOS工程

proxysql 2.6部署代理MGR集群读写分离

官方文档 https://proxysql.com/documentation/ProxySQL-Configuration/ 下载安装proxysql https://github.com/sysown/proxysql/releases/download/v2.6.0/proxysql-2.6.0-1-centos7.x86_64.rpmyum -y localinstall proxysql-2.6.0-1-centos7.x86_64.rpm # 软链接数据目录 …

ASPICE实操中的那点事儿-如何解决上、下游一致性难以保证的问题

写在前面 ASPICE理解起来容易&#xff0c;毕竟是有条有理的。但实操起来&#xff0c;尤其是把ASPICE各过程域做全的时候&#xff0c;会遇到各种各样的问题&#xff08;不是技术问题有多难&#xff0c;而是该如何做选择&#xff0c;如何既能符合ASPICE要求&#xff0c;保证过程质…

外包干了10天,技术退步明显。。。。。

先说一下自己的情况&#xff0c;本科生&#xff0c;2019年我通过校招踏入了南京一家软件公司&#xff0c;开始了我的职业生涯。那时的我&#xff0c;满怀热血和憧憬&#xff0c;期待着在这个行业中闯出一片天地。然而&#xff0c;随着时间的推移&#xff0c;我发现自己逐渐陷入…

Java必须掌握的莫夫曼树(含面试大厂题和源码)

面试题&#xff1a;构建哈夫曼树 相关知识点&#xff1a; 哈夫曼树&#xff08;Huffman Tree&#xff09;&#xff1a;哈夫曼树是一种用于数据压缩的树形结构。它是一种最优二叉树&#xff0c;其特点是频率高的字符出现在树的顶部&#xff0c;频率低的字符出现在树的底部&…

2024年阿里云域名优惠口令更新,亲测有效口令大全

2024年阿里云域名优惠口令&#xff0c;com域名续费优惠口令“com批量注册更享优惠”&#xff0c;cn域名续费优惠口令“cn注册多个价格更优”&#xff0c;cn域名注册优惠口令“互联网上的中国标识”&#xff0c;阿里云优惠口令是域名专属的优惠码&#xff0c;可用于域名注册、续…

OCR图片预处理之去除红色水印

import cv2 读取图像 src cv2.imread(“page-2_0.jpg”) if src is None: print(“Fail to open image!”) exit() 将图像转换为灰度图 gray cv2.cvtColor(src, cv2.COLOR_BGR2GRAY) # 全局二值化 th 180 # 阈值要根据实际情况调整 binary cv2.threshold(gray, t…

aiofiles,一个超酷的 Python 异步编程库!

目录 前言 什么是aiofiles库&#xff1f; 安装aiofiles库 基本功能 1. 异步打开文件 2. 异步读取文件 3. 异步写入文件 4. 异步追加内容到文件 应用场景 1. 异步Web服务器 2. 异步数据处理 3. 异步日志记录 总结 前言 大家好&#xff0c;今天为大家分享一个超酷的 Pytho…

stack/queue

链表完了之后就是我们的栈和队列了&#xff0c;当然我们的STL中也有实现&#xff0c;下面我们先来看一下简单用法&#xff0c;跟我们之前C语言实现的一样&#xff0c;stack和queue有这么几个重要的成员函数 最主要的就是这么几个&#xff1a;empty&#xff0c;push&#xff0c;…

Spring揭秘:ImportBeanDefinitionRegistrar应用场景及实现原理!

内容概念 ImportBeanDefinitionRegistrar接口提供了强大的动态注册Bean的能力&#xff0c;它允许开发者在Spring容器初始化时&#xff0c;灵活地根据特定条件或需求来添加或修改Bean定义&#xff0c;从而实现更为精细的控制和扩展性。这是构建可扩展框架、插件系统或处理复杂配…

2024.03.05作业

select实现tcp并发服务器 #include "test.h"#define SER_IP "192.168.42.106" #define SER_PORT 8888int create_socket() {int sfd socket(AF_INET, SOCK_STREAM, 0);if(sfd -1){perror("socket error");exit(-1);}printf("sfd %d\n&q…

安装VMWare+创建Linux虚拟机

点击VMware官网进入官网&#xff0c;下载VMware安装包。 一、安装VMware 一、安装VMware软件 &#xff08;1&#xff09;点击下一步 &#xff08;2&#xff09;勾选“我接受许可协议中的条款”&#xff0c;再点 ”击下一步“。 &#xff08;3&#xff09;选择下一步&#xf…

Linux编程3.2 进程-C程序启动过程

正常情况Linux 启动流程&#xff1a; ① BIOS 启动&#xff0c;完成自检&#xff0c;选择启动硬件 ②如果是磁盘系统读取 MBR ③从 MBR 指示&#xff0c;找到 GRUB 所在分区&#xff0c;加载 GRUB 显示菜单 ④加载 Linux 内核到内存中 ⑤执行 INIT 程序 ⑥进入用户界面 1、内核…

nvm安装、部署以及使用

1. nvm安装 官方地址&#xff1a;https://github.com/nvm-sh/nvm/blob/master/README.md nvm window安装&#xff1a;https://github.com/coreybutler/nvm-windows/releases 看个人习惯&#xff0c;通过不同形式来安装nvm&#xff0c;省劲就用.exe安装即可。 Tips&#xff1…

「连载」边缘计算(二十五)03-05:边缘部分源码(源码分析篇)

&#xff08;接上篇&#xff09; 1&#xff09;EdgehubConfig初始化具体如下所示。 config.InitEdgehubConfig() config.InitEdgehubConfig()函数定义具体如下所示。 KubeEdge/edge/pkg/edgehub/config/config.go // InitEdgehubConfig init edgehub config func InitEdgeh…

代码随想录算法训练营第三十四天|LeetCode860 柠檬水找零、LeetCode406 根据身高重建队列、LeetCode452 用最少数量的箭引爆气球

860.柠檬水找零 思路&#xff1a;只有5、10、20三种面额的纸币&#xff0c;因此每接收一种纸币对应的数量就&#xff0c;当接收10的&#xff0c;5的数量就--&#xff0c;当接收20的&#xff0c;有限消耗10的纸币&#xff08;贪心&#xff09;&#xff0c;因为10只能用于20找零…