导读
1.基本概念
2.屏幕适配技巧
基本概念
Android不同机型导致屏幕适配问题
屏幕尺寸,分辨率(px),屏幕像素密度(dpi)
dp(dip) ,sp
屏幕适配技巧
布局适配
第2点
第3点
图片适配
第1点
第2点
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test"
android:textSize="32sp"
android:background="@drawable/dialog"/>
</LinearLayout>
不用.9文件(边角被拉伸变形)
用了.9文件
怎样用:右击图片