探索Android软键盘的疑难杂症
深入探讨Android异步精髓Handler
详解Android主流框架不可或缺的基石
站在源码的肩膀上全解Scroller工作机制
Android多分辨率适配框架(1)— 核心基础
Android多分辨率适配框架(2)— 原理剖析
Android多分辨率适配框架(3)— 使用指南
自定义View系列教程00–推翻自己和过往,重学自定义View
自定义View系列教程01–常用工具介绍
自定义View系列教程02–onMeasure源码详尽分析
自定义View系列教程03–onLayout源码详尽分析
自定义View系列教程04–Draw源码分析及其实践
自定义View系列教程05–示例分析
自定义View系列教程06–详解View的Touch事件处理
自定义View系列教程07–详解ViewGroup分发Touch事件
自定义View系列教程08–滑动冲突的产生及其处理
PS:Android多分辨率适配框架视频教程同步更新啦
在上一篇文章中,我们分析了Android多分辨率适配框架的原理和代码实现。
在此,结合实例展示该框架的使用。
在展示的过程中,为了对照适配的效果,准备两部测试手机:
华为P7,分辨率为19201080,dpi为480
HTC T392,分辨率为800480,dpi为240
嗯哼,开始吧。
##Hello World
我们先通过一个简单的示例来了解该框架的基本使用
第一步:编写布局代码
<?xml version="1.0" encoding="utf-8"?>
<!--原创作者:谷哥的小弟-->
<!--博客地址:http://blog.csdn.net/lfdfhl-->
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="cc.displayutil2.MainActivity">
<Button
android:id="@+id/button"
android:layout_width="460px"
android:layout_height="200px"
android:textSize="50px"
android:background="@android:color/holo_blue_light"
android:gravity="center"
android:textColor="@android:color/holo_red_dark"
android:text="BUTTON" />
<LinearLayout
android:layout_below="@id/button"
android:layout_marginTop="100px"
android:background="@android:color/holo_green_dark"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="800px">
<TextView
android:id="@+id/textView"