`
mixer_a
  • 浏览: 363937 次
社区版块
存档分类
最新评论

【Android Training - 01】适配不同的屏幕[Lesson 1-支持不同的屏幕大小]

阅读更多

Dependencies and prerequisites[前提条件]

You should also read

Try it out

Download the sample app

NewsReader.zip

 

 

Android powers hundreds of device types with several different screen sizes, ranging from small phones to large TV sets. Therefore,it’s important that you design your application to be compatible with all screen sizes so it’s available to as many users as possible.

[显然,Android设备屏幕不一,为了更好的用户体验,我们必须做适配不同屏幕的操作]

 

 

Supporting Different Screen Sizes[支持不同的屏幕大小]


This lesson teaches you to
If you use "wrap_content", the width or height of the view is set to the minimum size necessary to fit the content within that view, while "match_parent" (also known as"fill_parent" before API level 8) makes the component expand to match the size of its parent view.

wrap_content:宽高根据内容大小调整
match_parent:伸展至与父控件一致

显然我们不能hard-coded(写死大小)

  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     android:orientation="vertical"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent">  
  5.     <LinearLayout android:layout_width="match_parent"   
  6.                   android:id="@+id/linearLayout1"    
  7.                   android:gravity="center"  
  8.                   android:layout_height="50dp">  
  9.         <ImageView android:id="@+id/imageView1"   
  10.                    android:layout_height="wrap_content"  
  11.                    android:layout_width="wrap_content"  
  12.                    android:src="@drawable/logo"  
  13.                    android:paddingRight="30dp"  
  14.                    android:layout_gravity="left"  
  15.                    android:layout_weight="0" />  
  16.         <View android:layout_height="wrap_content"   
  17.               android:id="@+id/view1"  
  18.               android:layout_width="wrap_content"  
  19.               android:layout_weight="1" />  
  20.         <Button android:id="@+id/categorybutton"  
  21.                 android:background="@drawable/button_bg"  
  22.                 android:layout_height="match_parent"  
  23.                 android:layout_weight="0"  
  24.                 android:layout_width="120dp"  
  25.                 style="@style/CategoryButtonStyle"/>  
  26.     </LinearLayout>  
  27.   
  28.     <fragment android:id="@+id/headlines"   
  29.               android:layout_height="fill_parent"  
  30.               android:name="com.example.android.newsreader.HeadlinesFragment"  
  31.               android:layout_width="match_parent" />  
  32. </LinearLayout>  

下面是相应的layout出现的屏幕

Use RelativeLayout[使用相对布局]

[如果我们需要一个相对的位置而不是仅仅是直线型的布局,那么我们可以使用RelativeLayout]

  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.     <TextView  
  6.         android:id="@+id/label"  
  7.         android:layout_width="match_parent"  
  8.         android:layout_height="wrap_content"  
  9.         android:text="Type here:"/>  
  10.     <EditText  
  11.         android:id="@+id/entry"  
  12.         android:layout_width="match_parent"  
  13.         android:layout_height="wrap_content"  
  14.         android:layout_below="@id/label"/>  
  15.     <Button  
  16.         android:id="@+id/ok"  
  17.         android:layout_width="wrap_content"  
  18.         android:layout_height="wrap_content"  
  19.         android:layout_below="@id/entry"  
  20.         android:layout_alignParentRight="true"  
  21.         android:layout_marginLeft="10dp"  
  22.         android:text="OK" />  
  23.     <Button  
  24.         android:layout_width="wrap_content"  
  25.         android:layout_height="wrap_content"  
  26.         android:layout_toLeftOf="@id/ok"  
  27.         android:layout_alignTop="@id/ok"  
  28.         android:text="Cancel" />  
  29. </RelativeLayout>  


上面图片是:Screenshot on a QVGA screen (small screen).


上面图片是:Screenshot on a WSVGA screen (large screen).

Use Size Qualifiers[使用大小标识符]

  • [虽然我们可以用上面的方法定义布局文件,让其在不同的情况下进行拉伸等动作,可是在某些比较大的屏幕,比如平板与TV上面还是不太适合,我们最好可以在这种情况下使用两套不同的布局文件来适配大小,我们可以使用大小标示符来标记不同的布局,让机器在运行程序的时候根据自身的大小来选择显示哪个布局]
  • [通常在 Tablets and TVs的AP上使用"two pane"的布局,这样]

 

 

  • res/layout/main.xml, single-pane (default) layout:
    1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    2.     android:orientation="vertical"  
    3.     android:layout_width="match_parent"  
    4.     android:layout_height="match_parent">  
    5.   
    6.     <fragment android:id="@+id/headlines"  
    7.               android:layout_height="fill_parent"  
    8.               android:name="com.example.android.newsreader.HeadlinesFragment"  
    9.               android:layout_width="match_parent" />  
    10. </LinearLayout>  
  • res/layout-xlarge/main.xml, two-pane layout:
    1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
    2.     android:layout_width="fill_parent"  
    3.     android:layout_height="fill_parent"  
    4.     android:orientation="horizontal">  
    5.     <fragment android:id="@+id/headlines"  
    6.               android:layout_height="fill_parent"  
    7.               android:name="com.example.android.newsreader.HeadlinesFragment"  
    8.               android:layout_width="400dp"  
    9.               android:layout_marginRight="10dp"/>  
    10.     <fragment android:id="@+id/article"  
    11.               android:layout_height="fill_parent"  
    12.               android:name="com.example.android.newsreader.ArticleFragment"  
    13.               android:layout_width="fill_parent" />  
    14. </LinearLayout>  

 

[“xlarge”可以用来标示哪些屏幕比较大的情况,在那些设备上,系统会自动选择two-pane的布局,对于其他小点的设备就会自动选择default的布局]

 

Use the Smallest-width Qualifier [使用最小宽度标识符]

  • 在很多时候我们不方便判断具体多大的屏幕才叫做large[比如5“与7”的设备],所以在Android 3.2之后引入了sw600dp,这样的方式来表示那些屏幕宽度至少是600dp以上的设备[通常7“的设备都至少会有600dp的宽],
  • 我们这可以这样定义一个布局文件:res/layout-sw600dp/main.xml(这是一个two-pane的布局),这样设置之后,系统会在设备屏幕宽至少600dp的时候自动选择显示这个布局文件,当然小于的情况下就会选择默认的res/layout/main.xml布局文件。
  • However,我们不能在Android 3.2之前的设备上使用这样的表示方法,仍然需要使用xlarge来处理这样的大屏幕情况

 

 

Use Layout Aliases [使用布局文件别名]

因为3.2之前不支持使用Smallest-width的标识符,为了兼容之前的设备,我们仍然需要使用一些抽象的大小标识符(small, normal, large and xlarge),有时候我们会出现定义了重复的布局文件的情况,比如

 

  • res/layout/main.xml: single-pane layout
  • res/layout-xlarge: multi-pane layout (这个文件是用来兼容3.2之前的设备)
  • res/layout-sw600dp: multi-pane layout (这个文件可以在3.2上进行使用,但是与上面的布局文件一致,都是two-pane的布局)
为了避免这样的duplication(重复的)文件,我们可以为重复的布局取个别名

  • res/layout/main.xml, single-pane layout
  • res/layout/main_twopanes.xml, two-pane layout
这样以后,我们可以这样重新定义上面那两个布局文件

  • res/values-xlarge/layout.xml:
  1. <resources>  
  2.     <item name="main" type="layout">@layout/main_twopanes</item>  
  3. </resources>  


  • res/values-sw600dp/layout.xml:
  1. <resources>  
  2.     <item name="main" type="layout">@layout/main_twopanes</item>  
  3. </resources>  


这样一来,就只需写一份two-pane的布局文件,两个布局设置都引用它 [这个设计很容易理解,通常很多地方我们都有这样做过]

Use Orientation Qualifiers [使用方向标识符]

一些布局可以很好的自动适配横屏landscape与竖屏portrait,但是我们最好是针对不同的方向设置不同的布局会比较好

比如我们现在有这样一个需求:
  • small screen, portrait: single pane, with logo
  • small screen, landscape: single pane, with logo
  • 7" tablet, portrait: single pane, with action bar
  • 7" tablet, landscape: dual pane, wide, with action bar
  • 10" tablet, portrait: dual pane, narrow, with action bar
  • 10" tablet, landscape: dual pane, wide, with action bar
我们可以使用上面说的别名方法,对上面的需求抽取出一些公共的布局元素,定义下面几个布局:

res/layout/onepane.xml:
res/layout/onepane_with_bar.xml:
res/layout/twopanes.xml:
res/layout/twopanes_narrow.xml:

 

这样以来,我们需要在setContentView的时候选择main_layout就可以了,系统会选择到相应的Value里面取出对应的布局文件进行显示

 

 

  • res/values/layouts.xml:
  1. <resources>  
  2.     <item name="main_layout" type="layout">@layout/onepane_with_bar</item>  
  3.     <bool name="has_two_panes">false</bool>  
  4. </resources>  

  • res/values-sw600dp-land/layouts.xml:
  1. <resources>  
  2.     <item name="main_layout" type="layout">@layout/twopanes</item>  
  3.     <bool name="has_two_panes">true</bool>  
  4. </resources>  

  • res/values-sw600dp-port/layouts.xml:
  1. <resources>  
  2.     <item name="main_layout" type="layout">@layout/onepane</item>  
  3.     <bool name="has_two_panes">false</bool>  
  4. </resources>  


 

  • res/values-xlarge-land/layouts.xml:
  1. <resources>  
  2.     <item name="main_layout" type="layout">@layout/twopanes</item>  
  3.     <bool name="has_two_panes">true</bool>  
  4. </resources>  


 

  • res/values-xlarge-port/layouts.xml:
  1. <resources>  
  2.     <item name="main_layout" type="layout">@layout/twopanes_narrow</item>  
  3.     <bool name="has_two_panes">true</bool>  
  4. </resources>  

 

Use Nine-patch Bitmaps[使用9-patch图片]

 

  • nine-patch bitmaps:which are specially formatted PNG files that indicate which areas can and cannot be stretched. [一种有限制的可伸缩的图片格式,为了避免通常的图片在伸缩后出现的不某些不适配,比如图片中有个logo,你不希望这个logo随拉伸而拉伸,那么我们就应该使用这种格式的图片来定义哪些区域可以拉伸]
我们可以使用draw9patch这个工具(位于tools/目录下)来把普通图片转换为9-patch格式的图片。



button.9.png 【注意文件扩展名为.9.png】

这个图片一个扩大的缩略图,图中可以看到有三个黑点,分别指示了哪些位置可以被拉伸,仔细看了还怎么个拉伸的原理,暂时没有看出来,还请大家赐教,不过好的是,我们可以用draw9patch查看缩放的效果图。


可以看到这样的图片不会对那个下拉图标进行拉伸,这样就达到了我们需要的效果,不然下拉图标也被拉伸会显得很不合适。


分享到:
评论

相关推荐

    Android-Training-Course-in-Chinese

    - 适配不同语言环境,实现多语言支持。 - 优化布局以适应各种屏幕尺寸和密度。 - 兼容不同的Android系统版本。 9. **管理Activity的生命周期** - 深入理解Activity的生命周期方法。 - 处理Activity的启动、...

    android-training-course-in-chinese v0.9.2 本地HTML

    Android培训课程中文版v0.9.2是一份全面、深入的Android开发者学习资源,旨在帮助新手和经验丰富的开发者提升技能,掌握Android应用开发的核心概念和技术。这份资料特别强调了本地HTML的使用,这对于构建离线可用的...

    攻防世界Training-Stegano-1

    【标题】"攻防世界Training-Stegano-1" 是一个关于信息安全领域的训练题目,主要涉及的是隐写术(Steganography)技术。隐写术是一种隐藏信息的技术,通常用于在图像、音频或文本中嵌入秘密数据,使得非授权者无法...

    tangjiadong-Training-master-master.zip

    本压缩包"tangjiadong-Training-master-master.zip"中包含的"Training-master"项目,正是一个基于SSM框架的高职技能大赛管理系统,它为我们提供了一个学习和实践SSM技术的绝佳案例。 首先,我们来了解一下SSM框架的...

    AndroidTraining-ndk

    Android开发平台技术资料,Android开发平台技术资料

    AndroidTraining-Application

    Android开发平台的技术资料,上层应用程序的开发

    书籍ansible-training-answer-keys-master的随带例子代码

    在"书籍 ansible-training-answer-keys-master 的随带例子代码"中,你将找到一系列实践示例,帮助你深入理解 Ansible Playbook 的使用。 首先,让我们了解一下 Ansible Playbook 的基本结构。一个 Playbook 包含一...

    Android Training

    在Android开发领域,Android Training是一系列官方提供的教程和实践课程,旨在帮助开发者提升技能,创建高质量的Android应用程序。这些教程涵盖了从基础到高级的各种主题,包括用户界面设计、性能优化、网络通信、...

    Android代码-AndroidTraining

    Android Development Training Course Repository Android アプリ開発の基礎知識と実務スキルを身に付けるトレーニングコース 前提 このトレーニングコースに入る前に、下記の知識・スキルについて勉強しておいてく...

    sgx-web-training-Lab-Manual-v1.0

    本手册为“sgx-web-training-Lab-Manual-v1.0”,旨在指导读者如何一步步深入使用Intel SGX技术。文档强调实践操作,涵盖从系统配置到项目建立,再到Intel SGX的具体应用过程。配合B站视频,该实训文档构成了一个...

    Android Training Course in Chinese

    ### Android Training Course in Chinese #### 一、Android入门基础 - **建立第一个App** - 创建Android项目:通过Android Studio等开发工具,选择合适的模板快速搭建Android应用的基础框架。 - 执行Android程序...

    PyPI 官网下载 | xt_training-1.1.2-py3-none-any.whl

    《PyPI官网下载:xt_training-1.1.2-py3-none-any.whl》 在Python编程领域,PyPI(Python Package Index)是官方的软件仓库,它为开发者提供了丰富的第三方库,使得用户可以方便地下载和安装这些库。在本话题中,...

    SpyGlass-CDC-Training-03.pdf

    1. **时钟树检查**:检查时钟树的结构,防止由于非MUX组合门导致的潜在时钟毛刺(如Clock_info05b所示)。例如,不适当的逻辑门可能会引入时钟树中的不稳定,增加时钟抖动风险。此外,检查时钟树中不应出现的门,如...

    Android Training学习笔记——Navigation 参考源码(ListView版)

    为了保证良好的用户体验,Navigation设计应考虑不同屏幕尺寸和横竖屏的适配。ListView的布局可能需要根据屏幕尺寸进行调整,以确保所有条目都能正确显示。 9. **测试和调试** 在实现Navigation时,确保对各种...

    training-linear-layout

    training-linear-layout

    Android training

    Android training docs

    fundamentos-android-Marcos:Android Training-Cast 2015-Marcos Rafael da S Cavalheiro

    Android Training-Cast 2015-Marcos Rafael da S Cavalheiro。 2015/08/02 在客户列表屏幕上包括搜索字段。 2015年7月30日 评估完成 包含登录验证 如果无效或没有互联网,则包括对CEP的验证。 包含CEP的搜索...

    veh-com-training-sources_training_

    4. `training-mobility-example.cc`:移动性模型是VANET仿真中的重要组成部分,这个文件可能是介绍或实现不同移动模型的示例,如随机游走、GPSR(Greedy Perimeter Stateless Routing)等,以模拟车辆的动态行为。...

Global site tag (gtag.js) - Google Analytics