android螢幕適配

2021-08-13 10:11:49 字數 1558 閱讀 7047

2.標準的布局

android

:layout_width=

"match_parent"

android

:layout_height=

"108px"

android

:layout_margintop=

"26px"

android

:background=

"#ffffffff"

xmlns:

android

="">

android

:layout_width=

"wrap_content"

android

:layout_height=

"wrap_content"

android

:layout_marginleft=

"22px"

android

:layout_margintop=

"16px"

android

:text=

"王大炮 wang.dapao"

android

:textcolor=

"#333"

android

:textsize=

"28px"

/>

android

:layout_width=

"wrap_content"

android

:layout_height=

"wrap_content"

android

:layout_alignparentbottom=

"true"

android

:layout_marginbottom=

"16px"

android

:layout_marginleft=

"22px"

android

:text=

"護照:g50786449"

android

:textcolor=

"#999"

android

:textsize=

"26px"

/>

3.匯入依賴

compile 'com.zhy:autolayout:1.4.5'
4.

在你的專案的androidmanifest中註明你的設計稿的尺寸。

android

:name=

"design_width"

android

:value=

"768"

>

android

:name=

"design_height"

android

:value=

"1280"

>

5.也可以在布局檔案中直接用autolayout布局方式

6.注意事項:

測試最好用真機android studio有時候不能動態的載入布局。

android螢幕適配

1 配置android應用程式適配在不同的手機上,需要在androidmanifest.xml檔案的manifest標籤中新增子元素 1 2 3 4 5 6 7 8 9 10 manifestxmlns android supports screens android smallscreens tr...

Android螢幕適配

在sdk中的幫助文件中。develpe training best practices supporting multiple screens 這裡有多屏適配的介紹。現做簡單記錄。screen size small 至少 426dp x 320dp normal 至少 470dp x 320dp l...

android螢幕適配

ui在不同的螢幕畫素或大小中顯示效果可能會不同 1 建議使用盡量使用線性布局和相對布局,基本上不會產生螢幕大小不適應的問題 2 設定控制項寬高的時候使用單位dip dp 是根據當前裝置大小比例計算出來的 3 文字設定盡量使用sp單位 4 盡量不使用px設定大小 畫素px和dip相互轉換工具,實現兩種...