1. 程式人生 > >Android 不同尺寸螢幕適配採用自動縮放完美解決

Android 不同尺寸螢幕適配採用自動縮放完美解決

轉自:http://blog.csdn.net/ljh102/article/details/45536293

做過安卓開發的都知道,螢幕適配是一件非常困難的事情。

Google官方的解決方案:screens_support 需要寫多個layout檔案以及dimens.xml,工作量大不說,維護也麻煩。

其實很多時候我們的需求很簡單,就是要求不同的螢幕看上去效果一樣就可以了。這樣就需要我們佈局的時候採用百分比來定位。
說到百分比,我們第一時間想到的是layout_weight,但是layout_weight實際使用效果並不是很好,特別是一些複雜情況下需要層層巢狀。也無法解決所有問題,比如文字大小。

我想到的解決方案是根據螢幕大小重新對佈局以及佈局內部物件的大小進行調整。之前做過的一些專案裡面的自定義view也用過這種方法。

我在網上也搜到了一些相關資料,比如 Vanteon Electronic Design  。說明這種方法是可行的。剩下的問題就是怎麼把這種方式封裝成一個通用的解決方案,能以最簡便的方式融入到開發中來。

經過一番實驗,我初步開發出來了AutoScalingLayout
原始碼:https://github.com/Junhua102/AutoScalingLayout

實現原理:

原理類似我們用播放器看視訊的時候,無論怎麼調整視窗大小,播放器都可以自動調整視訊大小適合視窗大小。因為視訊有一個原始解析度,播放器會根據視窗實際大小對視訊進行縮放。

我們寫佈局的時候一般是根據某個基準解析度來(比如UI給的原型圖),自動縮放佈局的作用就是將這個基準佈局乘以一個縮放比例,達到適配所有解析度的目的。

計算縮放比例公式: 實際大小 / 設計大小 = 縮放比例
只需要給定一個設計大小,就可以計算出縮放比例,然後將佈局內部所有元素的尺寸都乘以這個縮放比例,就可以適配實際螢幕了。


使用方法:
studio使用者使用release/AutoScalingLayout.aar
eclipse使用者使用release/AutoScalingLayout.jar,並將attr.xml複製到value目錄

替換佈局:

只需要替換需要縮放的根佈局即可,內部子佈局會自動縮放

原佈局 自動縮放佈局
RelativeLayout  ASRelativeLayout
LinearLayout  ASLinearLayout
FrameLayout  ASFrameLayout
目前只支援以上3種佈局

新增屬性:
  1. xmlns:custom="http://schemas.android.com/apk/res-auto"
  2. custom:designWidth="384dp"
  3. custom:designHeight="575dp"

designWidth和designHeight就是你在視覺化編輯xml時使用的螢幕大小。比如我使用的是Nexus 4,螢幕尺換算成dp就是384dp和575dp(減去狀態列和操作欄)

注意事項

1.designWidth和designHeight非常重要,千萬不要填錯,否則縮放出來就不是你想要的效果了。
2.如果designWidth和designHeight的單位是dp,那麼所有內部子view的單位都必須是dp,不能寫px、pt等其他單位。文字大小也不能用sp。如果你想無腦照抄UI給出的畫素值,就全部單位用px就可以了。

3.AutoScalingLayout縮放時會保持deginWidth和designHeight的縱橫比,不用擔心正方形變矩形。

以sample中的 activity_login_dp.xml 為例

  1. <me.dreamheart.autoscalinglayout.ASRelativeLayout
  2.     xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:tools="http://schemas.android.com/tools"
  4.     xmlns:custom="http://schemas.android.com/apk/res-auto"
  5.     custom:designWidth="384dp"
  6.     custom:designHeight="575dp"
  7.     custom:autoScaleEnable="true"
  8.     android:layout_width="match_parent"
  9.     android:layout_height="match_parent"
  10.     android:orientation="vertical"
  11.     tools:context=".LoginActivity"
  12.     android:background="@drawable/login_bg"
  13.     >
  14.     <TextView
  15.         android:layout_width="wrap_content"
  16.         android:layout_height="wrap_content"
  17.         android:layout_marginTop="60dp"
  18.         android:text="Title"
  19.         android:textSize="30dp"
  20.         android:textColor="#fff"
  21.         android:layout_centerHorizontal="true"
  22.         />
  23.     <Viewandroid:id="@+id/login_input_form"
  24.         android:layout_width="270dp"
  25.         android:layout_height="100dp"
  26.         android:layout_marginTop="125dp"
  27.         android:layout_centerHorizontal="true"
  28.         android:background="@drawable/login_input_form"
  29.         />
  30.     <TextViewandroid:id="@+id/user_name_tv"
  31.         android:layout_width="wrap_content"
  32.         android:layout_height="wrap_content"
  33.         android:layout_marginTop="140dp"
  34.         android:layout_marginLeft="16dp"
  35.         android:layout_alignLeft="@+id/login_input_form"
  36.         android:text="@string/user_name"
  37.         android:textSize="15dp"
  38.         android:textColor="#666"
  39.         />
  40.     <TextViewandroid:id="@+id/password_tv"
  41.         android:layout_width="wrap_content"
  42.         android:layout_height="wrap_content"
  43.         android:layout_marginTop="190dp"
  44.         android:layout_alignLeft="@+id/user_name_tv"
  45.         android:text="@string/password"
  46.         android:textSize="15dp"
  47.         android:textColor="#666"
  48.         />
  49.     <EditTextandroid:id="@+id/user_name"
  50.         android:layout_toRightOf="@+id/user_name_tv"
  51.         android:layout_marginLeft="10dp"
  52.         android:layout_alignBaseline="@+id/user_name_tv"
  53.         android:layout_height="wrap_content"
  54.         android:layout_width="190dp"
  55.         android:textSize="15dp"
  56.         android:textColor="#444"
  57.         android:hint="@string/prompt_name"
  58.         android:inputType="text"
  59.         android:maxLines="1"
  60.         android:singleLine="true"/>
  61.     <EditTextandroid:id="@+id/password"
  62.         android:layout_toRightOf="@+id/user_name_tv"
  63.         android:layout_marginLeft="10dp"
  64.         android:layout_alignBaseline="@+id/password_tv"
  65.         android:layout_height="wrap_content"
  66.         android:layout_width="190dp"
  67.         android:textSize="15dp"
  68.         android:textColor="#444"
  69.         android:hint="@string/prompt_password"
  70.         android:inputType="textPassword"
  71.         android:maxLines="1"android:singleLine="true"/>
  72.     <Buttonandroid:id="@+id/email_sign_in_button"
  73.         android:background="@drawable/login_btn_selector"
  74.         android:layout_marginTop="260dp"
  75.         android:layout_centerHorizontal="true"
  76.         android:layout_width="270dp"
  77.         android:layout_height="40dp"
  78.         android:text="@string/action_sign_in"
  79.         android:textSize="20dp"
  80.         android:textColor="#444"
  81.         android:textStyle="bold"/>
  82. </me.dreamheart.autoscalinglayout.ASRelativeLayout>

未使用AutoScalingLayout


使用AutoScalingLayout