您好,登錄后才能下訂單哦!
一、LinearLayout線性布局
(1)線性布局分為垂直和水平兩個(gè)方向
android:orientation="vertical" android:orientation="horizontal"
(2)定義寬和高
鋪滿父級(jí)容器:match_parent 根據(jù)內(nèi)容自適應(yīng):wrap_content
android:layout_width="" android:layout_height=""
(3)設(shè)置權(quán)重
android:layout_weight="1" 全部
二、RelativityLayout相對(duì)布局
//新建并設(shè)置一個(gè)RelativityLayout布局
RelativityLayout root=new RelativityLayout(this);
setContentView(root);
//添加一個(gè)textView控件
TextView tv=new TextView(this);
tv.setText("hello");
//定義RelativityLayout參數(shù),有兩個(gè)參數(shù)高和寬
RelativityLayout.LayoutParams lp=new RelativityLayout.LayoutParams(RelativityLayout.LayoutParams.WrapContent,RelativityLayout.LayoutParams.WrapContent);
root.addView(tv,lp);
三、 FrameLayout
用的比較少,加進(jìn)來(lái)的控件自動(dòng)堆疊在一起。日后再補(bǔ)充
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。