構建Android自適應佈局應用方案解析
由於目前在做的一款app需要適配手機和平板,所以我在研究怎麼構建可適應所有螢幕尺寸的佈局方法。
在web的自適應佈局上我有很多經驗,比如使用網格流,CSS3中的media queries屬性等等,這些都可以實現web上的自適應佈局,所以我想在Android上試試看。
在Android上,是通過configuration qualifiers的方式來載入不同的資源,基於不同的手機螢幕尺寸或者螢幕的朝向(豎直還是水平),而我最大的目標就是建立一個可以自動縮放的佈局,而不用根據不同的螢幕尺寸載入不同的佈局檔案。
除了為每種裝置尺寸分別製作不同的佈局檔案外,我發現一種更簡單的方法,就是為不同螢幕尺寸的裝置過載style.xml檔案。
也許你會覺得它很像CSS樣式,首先可以定義一個基本的style檔案,代表普通裝置尺寸,它的路徑位於values/styles.xml,然後還可以定義中等裝置尺寸,在values-sw600dp/styles.xml(7寸平板),values-sw600dp-land/styles.xml表示水平方向的螢幕,values-sw720dp/styles.xml表示十寸的平板等等。
在CSS中的自適應網格系統中,我們可以佈局一個寬是960畫素的.container類(沒有margin),而在手機上,我們也可以佈局一個100%寬的.container(也是沒有margin的)。
我們可以在Android上使用相同的方法實現,首先,需要建立一個基類樣式。
res/values/styles.xml
<style name="Container"> <item name="android:layout_margin">0dp</item> <item name="android:padding">16dp</item> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">match_parent</item> <item name="android:orientation">vertical</item> <item name="android:background">@drawable/container_background</item> </style>
對於平板(豎直的)來說,我們可以新增一些外邊距,因為螢幕夠大。
res/values-sw600dp/styles.xml
<style name="Container"> <item name="android:layout_margin">0dp</item> <item name="android:padding">32dp</item> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">match_parent</item> <item name="android:orientation">vertical</item> <item name="android:background">@drawable/container_background</item> </style>
在平板上豎直和水平的最大區別在於,我們會加上margin值,這樣內容就不會充滿整個螢幕了、我們還可以給父檢視加一個背景圖片,來填充空白區域。
res/values-sw600dp-land/styles.xml
<style name="Container"> <item name="android:layout_marginRight">130dp</item> <item name="android:layout_marginLeft">130dp</item> <item name="android:padding">32dp</item> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">match_parent</item> <item name="android:orientation">vertical</item> <item name="android:background">@drawable/container_background</item> </style>
然後我們可以在不同的螢幕上,這樣使用樣式檔案:
<LinearLayout style="@style/Container"> ... buttons, edit texts, text views, etc ... </LinearLayout>
這是在四寸螢幕手機的效果:
這是在七寸平板上的效果:
這是在七寸平板的橫屏效果:
還有一些在CSS裡面非常方便的屬性(比如Bootstrap),它們是一些幫助類,如.visible-phone,.hidden-phone,.visible-tablet等等,在Android上也可以這麼做。
<!-- Device Visibility --> <style name="PhoneOnly"> <item name="android:visibility">gone</item> </style> <style name="TabletOnly"> <item name="android:visibility">visible</item> </style> <style name="TabletPortraitOnly"> <item name="android:visibility">gone</item> </style> <style name="TabletLandscapeOnly"> <item name="android:visibility">visible</item> </style>
把這些樣式放在對應的配置資料夾中,然後就可以在需要的時候隱藏顯示相應的控制元件了。
<LinearLayout android:id="@+id/column_one"> ... some content ... </LinearLayout> <LinearLayout android:id="@+id/column_two" style="@style/TabletLandscapeOnly"> ... some extra content since we have space ... </LinearLayout>
對於平板(水平的)來說,此樣式會顯示兩列,但是對於大多數裝置來說,第二列是不會顯示的。
僅僅用了幾行xml程式碼,我們就能夠建立一個迷你的佈局框架了,我們還可以擴充套件這種技術,根據需要去實現一個通用的樣式檔案,以後可以用到專案中。
很遺憾的是,很難把Android的資源打包進jar包中(非Gradle的話),所以在Android上很難像bootstrap那樣去構建一個框架(不要被這些專案誤導了 ,如:http://www.androidbootstrap.com/,它們沒有你想象的那麼強大),還好Android正在向Gradle遷移,這樣可以使得製作Android前端的佈局框架就更加方便了。
相關文章
- 兩列自適應佈局方案整理
- CSS佈局 --- 自適應佈局CSS
- css自適應佈局CSS
- 三欄佈局之自適應佈局
- 三列自適應佈局(聖盃佈局)
- 移動端web自適應適配佈局解決方案Web
- 如何實現兩欄佈局,右側自適應?三欄佈局中間自適應呢?
- vue前端自適應佈局,一步到位所有自適應Vue前端
- 三列寬度自適應佈局
- Web自適應佈局那些事兒Web
- display:table-cell自適應佈局
- QT Creator/QT Designer佈局自適應QT
- easyui-layout佈局高度自適應UI
- 網頁佈局自適應的另一種解決方案網頁
- Android入門教程 | 使用 ConstraintLayout 構建自適應介面AndroidAI
- 兩列居中寬度自適應佈局
- Html佈局左右寬度固定中間自適應解決方案HTML
- vue移動端的自適應佈局的兩種解決方案Vue
- 一列居中寬度自適應佈局
- 學習筆記:自適應佈局,多螢幕適配筆記
- css佈局,左右固定中間自適應實現CSS
- flex佈局兩邊固定寬 中間自適應Flex
- Flex佈局應用Flex
- 【CSS】三欄/兩欄寬高自適應佈局大全CSS
- lib-flexible 實現移動端自適應佈局Flex
- 2020-12-17 html、css面試題3: 水平垂直居中,左右固定中間自適應 三欄佈局,靜態佈局、自適應佈局、流式佈局、響應式佈局、彈性佈局,IE中常見的相容性問題,清空陣列的方法HTMLCSS面試題陣列
- 使用Jenkins自動構建Android應用打包並上傳JenkinsAndroid
- Android 螢幕自適應Android
- harmonyOS應用-TableLayout佈局
- CSS Grid 網格佈局實現自適應9宮格CSS
- css--常見左右盒子寬度高度自適應佈局CSS
- 是時候開始構建適用於 Android Automotive OS 的應用了!Android
- Android 8.0 自適應圖示Android
- css經典佈局之左側固定大小右側自動適應CSS
- flex一欄寬度固定一欄寬度自適應佈局Flex
- Android XML靈活佈局之 EditText實現自適應高度同時限制最小和最大高度AndroidXML
- 單體應用 適合採用 dapr 構建嗎?
- 網頁響應式佈局的應用網頁
- 騰訊張勝譽:構建全棧量子佈局,共建“量子+”應用生態全棧