欧美亚洲大片-国产免费成人在线视频-国产成人8x人在线视频软件-日韩亚洲欧美中文字幕-97伦伦午夜电影理伦片-亚洲综合精品视频-曰本女人牲交高潮视频-久久久精品欧美-天天干天天操天天碰-精品国产乱码久久久久久1区2区-黄色一级免费片-在线免费欧美-国产成人精品在线视频-精人妻一区二区三区-香蕉视频2020-综合久久99-欧美日韩亚洲国产综合

十年專注于品牌網(wǎng)站建設(shè) 十余年專注于網(wǎng)站建設(shè)_小程序開發(fā)_APP開發(fā),低調(diào)、敢創(chuàng)新、有情懷!
南昌百恒網(wǎng)絡(luò)微信公眾號 掃一掃關(guān)注
小程序
tel-icon全國服務(wù)熱線:400-680-9298,0791-88117053
掃一掃關(guān)注百恒網(wǎng)絡(luò)微信公眾號
掃一掃打開百恒網(wǎng)絡(luò)微信小程序

百恒網(wǎng)絡(luò)

南昌百恒網(wǎng)絡(luò)

線性布局(linearlayout)與相對布局(relativelayout)的結(jié)合使用實例

百恒網(wǎng)絡(luò) 2014-10-20 15817

在做參數(shù)設(shè)置時我們需要實現(xiàn)一小塊區(qū)域的文字加上復(fù)選框或單選框,讓用戶設(shè)置參數(shù),在一個頁面上有多個參數(shù)要設(shè)置,那就需要多個區(qū)域,如圖所示,像這樣的布局我們一般怎么實現(xiàn)呢?接下來由百恒網(wǎng)絡(luò)工程向大家介紹,線性布局(linearlayout)與相對布局(relativelayout)結(jié)合使用方法。

1.我們先看一個簡單的相對布局(relativelayout)。

線性布局與相對布局實現(xiàn)參數(shù)設(shè)置實例

? ? ? xmlns:tools="http://schemas.android.com/tools"
? ? android:layout_width="match_parent"
? ? android:layout_height="100dp" ??
? ? android:background="#000000"
? ? tools:context="cn.jxbh.commonlayout.MainActivity" >

? ? ? ? ? ? android:id="@+id/tv1"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_alignParentTop="true"
? ? ? ? android:layout_marginTop="14dp"
? ? ? ? android:textSize="20sp"
? ? ? ? android:textColor="#ffffff"
? ? ? ? android:text="About Baiheng"
? ? ? ? ?/>

? ? ? ? ? ? android:id="@+id/tv2"
? ? ? ? android:layout_width="240dp"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_below="@+id/tv1"
? ? ? ? android:layout_alignLeft="@id/tv1"
? ? ? ? android:textSize="14sp"
? ? ? ? android:textColor="#88ffffff"
? ? ? ? android:text="Baiheng Software was founded in 2006, specializing in software development companies. detailed ..."
? ? ? ? />

? ? ? ? ? ? android:id="@+id/checkBox1"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentRight="true"
? ? ? ? android:layout_centerVertical="true" ? ??
? ? ? ? android:layout_marginRight="24dp"
? ? ? ? android:text="" />


相對布局(relative layout)實現(xiàn)實例
2.我們在線性布局中嵌套入相對布局,代碼如下。

? ? android:layout_width="match_parent"
? ? android:layout_height="match_parent"
? ? android:paddingBottom="@dimen/activity_vertical_margin"
? ? android:paddingLeft="@dimen/activity_horizontal_margin"
? ? android:paddingRight="@dimen/activity_horizontal_margin"
? ? android:paddingTop="@dimen/activity_vertical_margin" ??
? ? android:background="#000000"
? ? android:orientation="vertical" >

? ? ? ? android:layout_width="match_parent"
? ? android:layout_height="100dp" >
? ? ? ? ? ? android:id="@+id/tv1"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_alignParentTop="true"
? ? ? ? android:layout_marginTop="14dp"
? ? ? ? android:textSize="20sp"
? ? ? ? android:textColor="#ffffff"
? ? ? ? android:text="About Baiheng"
? ? ? ? ?/>

? ? ? ? ? ? android:id="@+id/tv2"
? ? ? ? android:layout_width="240dp"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_below="@+id/tv1"
? ? ? ? android:layout_alignLeft="@id/tv1"
? ? ? ? android:textSize="14sp"
? ? ? ? android:textColor="#88ffffff"
? ? ? ? android:text="Baiheng Software was founded in 2006, specializing in software development companies. detailed ..."
? ? ? ? />

? ? ? ? ? ? android:id="@+id/checkBox1"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentRight="true"
? ? ? ? android:layout_centerVertical="true" ? ??
? ? ? ? android:layout_marginRight="24dp"
? ? ? ? android:text="" />
? ?
? ? ? ? ? ? ? ? android:layout_below="@id/tv2"
? ? ? ? android:layout_marginTop="10dp"
? ? ? ? android:layout_width="match_parent" ?
? ? ? ? android:layout_height="1dp" ?
? ? ? ? android:background="#88ffffff" ?
? ? ? ? />
? ? ? ?
? ? ? ? ? ? android:layout_width="match_parent"
? ? android:layout_height="80dp" >
? ? ? ? ? ? android:id="@+id/tv1b"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_alignParentTop="true"
? ? ? ? android:layout_marginTop="14dp"
? ? ? ? android:textSize="20sp"
? ? ? ? android:textColor="#ffffff"
? ? ? ? android:text="GPS satellites"
? ? ? ? ?/>

? ? ? ? ? ? android:id="@+id/tv2b"
? ? ? ? android:layout_width="260dp"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentLeft="true"
? ? ? ? android:layout_below="@+id/tv1b"
? ? ? ? android:layout_alignLeft="@id/tv1b"
? ? ? ? android:textSize="14sp"
? ? ? ? android:textColor="#88ffffff"
? ? ? ? android:text="Let apps use GPS to pinpoint your location"
? ? ? ? />

? ? ? ? ? ? android:id="@+id/checkBox1b"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_alignParentRight="true"
? ? ? ? android:layout_centerVertical="true" ? ??
? ? ? ? android:layout_marginRight="24dp"
? ? ? ? android:text="" />
? ?
? ? ? ? ? ? ? ? android:layout_below="@id/tv2"
? ? ? ? android:layout_marginTop="10dp"
? ? ? ? android:layout_width="match_parent" ?
? ? ? ? android:layout_height="1dp" ?
? ? ? ? android:background="#88ffffff" ?
? ? ? ? />


備注:

1.我們在此使用view加了兩條分隔線,可以通過調(diào)節(jié)高度來控制線的精細。

2.顏色值最前面兩位數(shù)是控制線的透明度,argb.

原創(chuàng)文章出自:百恒網(wǎng)絡(luò) 如轉(zhuǎn)載請注明出處!專業(yè),專注于南昌網(wǎng)站建設(shè)、南昌APP開發(fā),為用戶提供高品質(zhì)的網(wǎng)絡(luò)產(chǎn)品及優(yōu)質(zhì)服務(wù)是我們始終的追求.


400-680-9298,0791-88117053
掃一掃關(guān)注百恒網(wǎng)絡(luò)微信公眾號
掃一掃打開百恒網(wǎng)絡(luò)小程序

歡迎您的光顧,我們將竭誠為您服務(wù)×

售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售前咨詢 售前咨詢
 
售后服務(wù) 售后服務(wù)
 
售后服務(wù) 售后服務(wù)
 
備案專線 備案專線
 
×
平武县| 泰顺县| 平谷区| 正蓝旗| 清水县| 翁源县| 怀来县| 息烽县| 六盘水市| 乌拉特前旗| 河池市| 缙云县| 高州市| 阜宁县| 阜阳市| 洞头县| 建平县| 南陵县| 民勤县| 东宁县| 石景山区| 凤凰县| 房产| 遂昌县| 峨眉山市| 阜城县| 蒙山县| 若尔盖县| 南宫市| 信宜市| 北碚区| 玛纳斯县| 丰镇市| 滦平县| 尖扎县| 黔西县| 邵阳县| 渭源县| 石棉县| 邹城市| 开封市|