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