Android横竖屏切换View设置不同尺寸或等比例缩放的自定义View的onMeasure解决方案(2)...

Android横竖屏切换View设置不同尺寸或等比例缩放的自定义View的onMeasure解决方案(2)

附录文章1以xml布局文件方式实现了一个view在横竖屏切换时候的大小尺寸缩放,实现这种需求,也可以使用自定义View的onMeasure方法实现。比如,写一个自定义的ScaleRelativeLayout相对布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"><zhangphil.scale.ScaleRelativeLayoutandroid:id="@+id/scale_relative_layout"android:layout_width="0dp"android:layout_height="0dp"android:layout_centerInParent="true"android:background="@android:color/holo_red_light"></zhangphil.scale.ScaleRelativeLayout></RelativeLayout>


注意在Avtivity中定义configChanges属性:
android:configChanges="orientation|layoutDirection|screenSize"



代码运行结果:
竖屏:




横屏:



附录:
1,《Android横竖屏切换View设置不同尺寸或等比例缩放的XML解决方案》链接地址:http://blog.csdn.net/zhangphil/article/details/73275311 

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

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

相关文章

java中的push方法_Java ArrayDeque push()方法与示例

java中的push方法ArrayDeque类push()方法 (ArrayDeque Class push() method) push() Method is available in java.lang package. push()方法在java.lang包中可用。 push() Method is used to push an element onto the stack denoted by this deque. push()方法用于将元素压入…

7段均衡器最佳参数_十段均衡器的设置和参数

本帖最后由 GTXarrow 于 2015-2-2 14:53 编辑EQ的基本定义:EQ是Equalizer的缩写&#xff0c;大陆称为均衡器&#xff0c;港台称为等化器。作用是调整各频段信号的增益值。10段均衡器表示有10个可调节节点。节点越多&#xff0c;便可以调节出更精确的曲线&#xff0c;同时难度更…

本地 服务器 文件传输,本地服务器文件传输

本地服务器文件传输 内容精选换一换CDM支持周期性自动将新增文件上传到OBS&#xff0c;不需要写代码&#xff0c;也不需要用户频繁手动上传即可使用OBS的海量存储能力进行文件备份。这里以CDM周期性备份FTP的文件到OBS为例进行介绍。例如&#xff1a;FTP服务器的to_obs_test目录…

上市公司行情查询站点

http://stock.finance.sina.com.cn/usstock/quotes/BABA.html

java peek方法_Java ArrayDeque peek()方法与示例

java peek方法ArrayDeque类peek()方法 (ArrayDeque Class peek() method) peek() Method is available in java.lang package. peek()方法在java.lang包中可用。 peek() Method is used to return the head element of the queue denoted by this deque but without removing t…

中怎么撤回消息_微信消息撤回也能看到,这个开源神器牛x!语音、图片、文字都支持!...

1.前言 微信在2014年的时候&#xff0c;发布的v5.3.1 版本中推出了消息撤回功能&#xff0c;用户可以选择撤回 2 分钟内发送的最后一条信息。现在很多即时通讯的软件都有撤回这个功能。腾讯为了照顾手残党&#xff0c;在微信和QQ中都加入了【消息撤回】的功能。但是这个功能对于…

ntce服务器不稳定,当心!你的教师资格证成绩失效了!| 服务

原标题&#xff1a;当心&#xff01;你的教师资格证成绩失效了&#xff01;| 服务湖南的小王同学资格证笔试考了两次才全部通过&#xff0c;想着好好歇歇&#xff0c;结果就误了面试报名&#xff0c;等到第三年面试报名时才发现有一科笔试成绩已经过期了......天呐&#xff0c;…

java中get接口示例_Java即时类| 带示例的get()方法

java中get接口示例即时类的get()方法 (Instant Class get() method) get() method is available in java.time package. get()方法在java.time包中可用。 get() method is used to get the value of the given field from this Instant object. get()方法用于从此Instant对象获…

深度学习与计算机视觉系列(6)_神经网络结构与神经元激励函数

作者&#xff1a;寒小阳 && 龙心尘 时间&#xff1a;2016年1月。 出处&#xff1a; http://blog.csdn.net/han_xiaoyang/article/details/50447834 http://blog.csdn.net/longxinchen_ml/article/details/50448267 声明&#xff1a;版权全部。转载请联系作者并注明出…

datasnap xe连接池_DataSnap 连接池

二、 DataSnap连接池连接池http://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManagerhttp://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManager_MethodsTDSSessionManager::GetThreadSession()->IdTDSSessionM…

软件测试工程师阶段_软件工程测试阶段

软件测试工程师阶段Testing can be defined as checking the software for its correctness. In other words, we can define it as a process of observing a program for its behavior on providing some set of inputs (known as test cases) to check whether it is produc…

mysql左连接和右连接_MYSQL 左连接与右连接

一、 LEFT JOINLEFT JOIN 关键字从左表(table1)返回所有的行&#xff0c;即使右表(table2)中没有匹配。如果右表中没有匹配&#xff0c;则结果为 NULL。语法&#xff1a;SELECT column_name(s)FROM table1LEFT JOIN table2ON table1.column_nametable2.column_name;举例&#x…

SIPp web frontend(2)

SIP VoIP 測试交流群: 323827101 欢迎大家转载。为保留作者成果&#xff0c;转载请注明出处。http://blog.csdn.net/netluoriver。有些文件在资源中也能够下载。假设你没有积分。能够联系我索要&#xff01;3.6Adding calls to a test(为測试脚本添加呼叫) To add a call, use …

python学习中文第五版_前5个学习Python的网站

python学习中文第五版Python is a multi-utility high-level language (programming as well as a scripting language) first introduced in the year 1991 designed by ‘Guido Van Rossum’, and was named after ‘Monty Python’ which was a very famous British Comedy …

mysql排重_mysql 排重查询

GROUP BY 语句可以实现某一列的去重查询。直接上语句&#xff1a;select io_dev_id from io_info where (TID1 AND host_nameyang1) GROUP BY 1&#xff1b;按照io_dev_id去重查询。p:顺手加上与ORDER BY 和 distinct的区分使用GROUP BY 是根据列捡选ORDER BY 是根据列排序dist…

CentOS7入门_安装并配置mysql5.7.18

2019独角兽企业重金招聘Python工程师标准>>> 1.下载mysql5.7 mysql的官方下载地址 打开之后我们选择对应的系统版本进行下载&#xff0c;之后选择nothanks,不登陆直接下载&#xff08;如果只是搭建最基本的的mysql的server只需要下载上图4个基本rpm文件即可&#xf…

Python Pandas –数据输入和输出

Pandas as a library can read and write data to a wide variety of sources. In this article, we would concentrate on the following, 熊猫作为图书馆可以读取和写入各种来源的数据。 在本文中&#xff0c;我们将重点介绍以下内容&#xff0c; CSV CSV Excel 电子表格 HT…

linux mysql 磁盘空间_磁盘空间满了之后MySQL会怎样

导读当磁盘空间爆满后&#xff0c;MySQL会发生什么事呢&#xff1f;又应该怎么应对&#xff1f;会发生什么事当磁盘空间写满了之后&#xff0c;MySQL是无法再写入任何数据的&#xff0c;包括对表数据的写入&#xff0c;以及binlog、binlog-index等文件。当然了&#xff0c;因为…

高晓松谈管理:自嘲总被员工管

6月11日&#xff0c;高晓松作为阿里巴巴钉钉在深圳卫视举办的“中国酷公司”超级发布会特邀嘉宾&#xff0c;在现场讲述了他对酷公司关键词“自驱力”的理解。 先来说说这场超级发布会的重头戏是阿里钉钉&#xff08;企业应用软件&#xff09;的3.5版本升级发布&#xff0c;钉钉…

as_hash ruby_Ruby中带有示例的Hash.each_pair方法

as_hash rubyHash.each_pair方法 (Hash.each_pair Method) In this article, we will study about Hash.each_pair Method. The working of this method can be predicted with the help of its name but it is not as simple as it seems. Well, we will understand this meth…