博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android横竖屏切换View设置不同尺寸或等比例缩放的XML解决方案
阅读量:5898 次
发布时间:2019-06-19

本文共 1651 字,大约阅读时间需要 5 分钟。

在一些应用中,涉及到横竖屏切换,View要切换成不同大小比例尺寸。为解决这种开发场景,有多种解决方案,比如可以重写View,实现横竖切换在onMesure或者此类View的回调方法里面重新测量重新绘制View的尺寸大小。还有可以在onConfigurationChanged里面根据当前的横竖屏切换情况重写设置View的长宽比例等等。

现在给出一种比较简单且较为灵活的处理方法:通过写两套xml布局,实现在不同横竖屏切换状态下的不同大小比例尺寸。这种方案的关键做法是在res里面放置两个layout,分别叫做layout-land和layout-port。layout-land横屏时候将被加载,layout-port竖屏时候加载。只需要写两个同名的布局文件,但是要分别放在res/layout-land和layout-port文件目录下。这样在横竖屏切换时候Android系统就会自动根据当前横竖屏情况加载相应的布局。
给出一个例子,本例只有一个activity_main.xml,需要在不同横竖屏切换时候加载不同相应的布局。那么就分别写两个不同activity_main.xml但是同名的布局文件。
res/layout-land/activity_main.xml:

[html]   
 http://www.woaipu.com/shops/zuzhuan/61406
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent">  
  5.   
  6.     <TextView  
  7.         android:layout_width="200dp"  
  8.         android:layout_height="150dp"  
  9.         android:layout_centerInParent="true"  
  10.         android:background="@android:color/holo_red_light"  
  11.         android:gravity="center"  
  12.         android:text="横屏" />  
  13.   
  14. </RelativeLayout>  

res/layout-port/activity_main.xml:

[html]   
 http://www.woaipu.com/shops/zuzhuan/61406
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent">  
  5.   
  6.     <TextView  
  7.         android:layout_width="133dp"  
  8.         android:layout_height="100dp"  
  9.         android:layout_centerInParent="true"  
  10.         android:background="@android:color/holo_red_light"  
  11.         android:gravity="center"  
  12.         android:text="竖屏" />  
  13.   
  14. </RelativeLayout>  

 

代码文件结构:

 http://www.woaipu.com/shops/zuzhuan/61406

代码在横竖屏切换时候的运行结果:

横屏:
http://www.woaipu.com/shops/zuzhuan/61406

转载于:https://www.cnblogs.com/sy646et/p/7194107.html

你可能感兴趣的文章
Cannot find module 'xxxxx' 问题
查看>>
android+unity游戏开发基础之场景的切换
查看>>
1. 继承
查看>>
计算器的实现 源码
查看>>
如何优化网站关键词.
查看>>
sql连接问题
查看>>
PPT2003播放多种格式的视频的方法ppt模板制作
查看>>
史上最全的css hack(ie6-9,firefox,chrome,opera,safari)
查看>>
Java并发 行级锁/字段锁/表级锁 乐观锁/悲观锁 共享锁/排他锁 死锁
查看>>
windows mobile (wm)手机 或 Symbian手机 联系人导入 android
查看>>
vim编辑器的一些简单使用
查看>>
iOS 开发中的LaunchScreen
查看>>
03-02-安装第2台域控制器和DNS服务器 on Win 2019 Core
查看>>
SQLSERVER 高效分页查询
查看>>
linux chkconfig+设置程序开关机顺序 详解
查看>>
如何安装vim
查看>>
jstree的数据后台生成
查看>>
jQuery中each的用法之退出循环和结束本次循环
查看>>
Windows下一步步搭建自己的独立博客——使用 GitHub Pages + Hexo 基础教程(一)
查看>>
Active Diretory 全攻略(三)加入域
查看>>