當(dāng)前位置:首頁(yè) > 嵌入式 > 嵌入式軟件
[導(dǎo)讀]1.引入:compile 'com.android.support:percent:24.0.0'2.點(diǎn)開(kāi)源碼可以看到,主要有兩個(gè)布局類PercentFrameLayout和PercentRelativeLayout,一個(gè)工具類PercentLayoutHelper

1.引入:compile ‘com.android.support:percent:24.0.0‘

2.點(diǎn)開(kāi)源碼可以看到,主要有兩個(gè)布局類PercentFrameLayout和PercentRelativeLayout,一個(gè)工具類PercentLayoutHelper。

 

3.點(diǎn)開(kāi)布局類比如PercentRelativeLayout的源碼,可以看到實(shí)現(xiàn)的很簡(jiǎn)單。

public class PercentRelativeLayout extends RelativeLayout {

private final PercentLayoutHelper mHelper = new PercentLayoutHelper(this);

/**省略若干行構(gòu)造方法之類的代碼**/

@Override

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

//重點(diǎn)在這

mHelper.adjustChildren(widthMeasureSpec, heightMeasureSpec);

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

if (mHelper.handleMeasuredStateTooSmall()) {

super.onMeasure(widthMeasureSpec, heightMeasureSpec);

}

}

@Override

protected void onLayout(boolean changed, int left, int top, int right, int bottom) {

super.onLayout(changed, left, top, right, bottom);

mHelper.restoreOriginalParams();

}

public static class LayoutParams extends RelativeLayout.LayoutParams

implements PercentLayoutHelper.PercentLayoutParams {

private PercentLayoutHelper.PercentLayoutInfo mPercentLayoutInfo;

public LayoutParams(Context c, AttributeSet attrs) {

super(c, attrs);

mPercentLayoutInfo = PercentLayoutHelper.getPercentLayoutInfo(c, attrs);

}

/**省略若干行構(gòu)造方法之類的代碼**/

@Override

public PercentLayoutHelper.PercentLayoutInfo getPercentLayoutInfo() {

if (mPercentLayoutInfo == null) {

mPercentLayoutInfo = new PercentLayoutHelper.PercentLayoutInfo();

}

return mPercentLayoutInfo;

}

@Override

protected void setBaseAttributes(TypedArray a, int widthAttr, int heightAttr) {

PercentLayoutHelper.fetchWidthAndHeight(this, a, widthAttr, heightAttr);

}

}

}

就是在onMeasure和onLayout里面調(diào)用了PercentLayoutHelper 的一些方法,另外在里面定義了自己的LayoutParams ,而這個(gè)LayoutParams 也相當(dāng)簡(jiǎn)單。

這里關(guān)鍵的一行代碼是在onMeasure方法里面,mHelper.adjustChildren(widthMeasureSpec, heightMeasureSpec);通過(guò)PercentLayoutHelper 的adjustChildren 遍歷子view來(lái)設(shè)置 子view的寬高,寬高在PercentLayoutHelper 的內(nèi)部類PercentLayoutInfo通過(guò)在布局文件中設(shè)置的值計(jì)算好了。

public void adjustChildren(int widthMeasureSpec, int heightMeasureSpec) {

// Calculate available space, accounting for host‘s paddings

int widthHint = View.MeasureSpec.getSize(widthMeasureSpec) - mHost.getPaddingLeft()

- mHost.getPaddingRight();

int heightHint = View.MeasureSpec.getSize(heightMeasureSpec) - mHost.getPaddingTop()

- mHost.getPaddingBottom();

for (int i = 0, N = mHost.getChildCount(); i < N; i++) {

//遍歷子view來(lái)設(shè)置 子view的寬高

View view = mHost.getChildAt(i);

ViewGroup.LayoutParams params = view.getLayoutParams();

if (DEBUG) {

Log.d(TAG, "should adjust " + view + " " + params);

}

if (params instanceof PercentLayoutParams) {

PercentLayoutInfo info =

((PercentLayoutParams) params).getPercentLayoutInfo();

if (info != null) {

if (params instanceof ViewGroup.MarginLayoutParams) {

info.fillMarginLayoutParams(view, (ViewGroup.MarginLayoutParams) params,

widthHint, heightHint);

} else {

info.fillLayoutParams(params, widthHint, heightHint);

}

}

}

}

}

4.布局中的使用方法:以PercentRelativeLayout為例

 

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:background="@color/background_color"

>

 

android:id="@+id/mian_tab_name"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:textColor="@color/back_green"

android:textSize="15sp"

android:text="name"

/>

 

app:layout_widthPercent="50%"

app:layout_heightPercent="50%"

android:src="@drawable/ic_launcher_icon"

android:scaleType="fitXY"

android:layout_below="@+id/mian_tab_name"

android:background="@color/black"

/>

引入xmlns:app的命名空間,然后app:layout_widthPercent="50%"就可以設(shè)置寬高的百分比了。相當(dāng)簡(jiǎn)單 。

5.不過(guò)在使用的過(guò)程中,可能會(huì)有一些其他的需求,比如app:layout_widthPercent="50%",app:layout_heightPercent="50%"都是相對(duì)于屏幕的寬高的,假如要顯示一張正方形的圖片,以寬的50%為準(zhǔn)呢?這個(gè)時(shí)候就可以這樣寫了:

 

app:layout_widthPercent="50%"

app:layout_aspectRatio="100%"

android:src="@drawable/ic_launcher_icon"

android:scaleType="fitXY"

android:layout_below="@+id/mian_tab_name"

android:background="@color/CS_black"

/>

使用layout_aspectRatio屬性,設(shè)置app:layout_aspectRatio="100%",layout_aspectRatio就是寬高比。這個(gè)時(shí)候就不要設(shè)置app:layout_heightPercent屬性了。在PercentLayoutHelper 里面, 源代碼如下:

public void fillLayoutParams(ViewGroup.LayoutParams params, int widthHint,

int heightHint) {

// Preserve the original layout params, so we can restore them after the measure step.

mPreservedParams.width = params.width;

mPreservedParams.height = params.height;

// We assume that width/height set to 0 means that value was unset. This might not

// necessarily be true, as the user might explicitly set it to 0. However, we use this

// information only for the aspect ratio. If the user set the aspect ratio attribute,

// it means they accept or soon discover that it will be disregarded.

final boolean widthNotSet =

(mPreservedParams.mIsWidthComputedFromAspectRatio

|| mPreservedParams.width == 0) && (widthPercent < 0);

final boolean heightNotSet =

(mPreservedParams.mIsHeightComputedFromAspectRatio

|| mPreservedParams.height == 0) && (heightPercent < 0);

if (widthPercent >= 0) {

params.width = (int) (widthHint * widthPercent);

}

if (heightPercent >= 0) {

params.height = (int) (heightHint * heightPercent);

}

//這一段代碼是關(guān)鍵,如果aspectRatio >=0,aspectRatio是寬高比

if (aspectRatio >= 0) {

if (widthNotSet) {

//如果寬沒(méi)有設(shè)置,就以高為準(zhǔn)

params.width = (int) (params.height * aspectRatio);

// Keep track that we‘ve filled the width based on the height and aspect ratio.

mPreservedParams.mIsWidthComputedFromAspectRatio = true;

}

if (heightNotSet) {

//如果高沒(méi)有設(shè)置,就以寬為準(zhǔn)

params.height = (int) (params.width / aspectRatio);

// Keep track that we‘ve filled the height based on the width and aspect ratio.

mPreservedParams.mIsHeightComputedFromAspectRatio = true;

}

}

if (DEBUG) {

Log.d(TAG, "after fillLayoutParams: (" + params.width + ", " + params.height + ")");

}

}

6.另外,假如我們要定義自己的PercentLinearLayout,基本可以直接改一下名字,繼承自LinearLayout就好了:public class PercentLinearLayout extends LinearLayout ,在仿照PercentRelativeLayout里面的LayoutParams定義一個(gè)自己的LayoutParams就好了。

不過(guò)官方為什么沒(méi)有直接提供一個(gè)PercentLinearLayout 類,而只提供了兩個(gè)PercentFrameLayout和PercentRelativeLayout呢?

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請(qǐng)聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請(qǐng)及時(shí)聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

倫敦2024年8月29日 /美通社/ -- 英國(guó)汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開(kāi)發(fā)耗時(shí)1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動(dòng) BSP

北京2024年8月28日 /美通社/ -- 越來(lái)越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時(shí)企業(yè)卻面臨越來(lái)越多業(yè)務(wù)中斷的風(fēng)險(xiǎn),如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報(bào)道,騰訊和網(wǎng)易近期正在縮減他們對(duì)日本游戲市場(chǎng)的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)開(kāi)幕式在貴陽(yáng)舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國(guó)國(guó)際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語(yǔ)權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對(duì)環(huán)境變化,經(jīng)營(yíng)業(yè)績(jī)穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤(rùn)率延續(xù)升勢(shì) 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長(zhǎng) 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競(jìng)爭(zhēng)力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競(jìng)爭(zhēng)優(yōu)勢(shì)...

關(guān)鍵字: 通信 BSP 電信運(yùn)營(yíng)商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺(tái)與中國(guó)電影電視技術(shù)學(xué)會(huì)聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會(huì)上宣布正式成立。 活動(dòng)現(xiàn)場(chǎng) NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長(zhǎng)三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會(huì)上,軟通動(dòng)力信息技術(shù)(集團(tuán))股份有限公司(以下簡(jiǎn)稱"軟通動(dòng)力")與長(zhǎng)三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉