十年專注于品牌網站建設 十余年專注于網站建設_小程序開發_APP開發,低調、敢創新、有情懷!
      南昌百恒網絡微信公眾號 掃一掃關注
      小程序
      tel-icon全國服務熱線:400-680-9298,0791-88117053
      掃一掃關注百恒網絡微信公眾號
      掃一掃打開百恒網絡微信小程序

      百恒網絡

      南昌百恒網絡

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

      百恒網絡 2014-10-20 15378

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

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

      線性布局與相對布局實現參數設置實例

      ? ? ? 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)實現實例
      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加了兩條分隔線,可以通過調節高度來控制線的精細。

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

      原創文章出自:百恒網絡 如轉載請注明出處!專業,專注于南昌網站建設、南昌APP開發,為用戶提供高品質的網絡產品及優質服務是我們始終的追求.


      400-680-9298,0791-88117053
      掃一掃關注百恒網絡微信公眾號
      掃一掃打開百恒網絡小程序

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

      售前咨詢 售前咨詢
       
      售前咨詢 售前咨詢
       
      售前咨詢 售前咨詢
       
      售前咨詢 售前咨詢
       
      售前咨詢 售前咨詢
       
      售后服務 售后服務
       
      售后服務 售后服務
       
      備案專線 備案專線
       
      ×
      国产精品久久久久久无毒不卡| 亚洲国产精品日韩专区AV| 亚洲日韩精品一区二区三区无码| 日韩精品区一区二区三VR| 日韩精品视频免费在线观看| 91精品国产自产在线观看高清 | 无码A级毛片日韩精品| 国产精品视频白浆免费视频 | 亚洲欧洲久久久精品| 国产成人精品久久久久| 久久精品国产一区二区三| 欧美日韩亚洲精品| 国产成人综合日韩精品无码| 久久久国产乱子伦精品作者| caoporn国产精品免费| 亚洲日韩精品无码专区| 久久青草精品38国产| 中文字幕精品亚洲无线码一区| 2019日韩中文字幕MV| 亚洲精品自偷自拍无码| 日本中文字幕在线精品| 柠檬福利精品视频导航| 国产成人精品综合久久久久| 日韩精品无码免费专区午夜| 国产精品无码aⅴ嫩草| 亚洲精品国产啊女成拍色拍| 国产美女亚洲精品久久久综合| 精品国产91久久久久久久a| 国产一区精品视频| 国产精品乳摇在线播放| 国产成人A人亚洲精品无码| 亚洲精品一级无码中文字幕| 亚洲国产精品第一区二区三区| 日韩免费无砖专区2020狼| 成人区人妻精品一区二区不卡| 精品一区二区三区波多野结衣| 99这里只有精品66视频| 中文字幕久久精品无码| 一本久久a久久精品亚洲| 国产啪精品视频网站| 亚洲精品无码精品mV在线观看|