您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎么在Android中使用LinearLayout設(shè)置邊框,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
1.定一個(gè)underline的xml文件,把它放到drawable下
underline.xml
<?xml version="1.0" encoding="UTF-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <!-- 連框顏色值 --> <item> <shape> <solid android:color="#dddddd" /> </shape> </item> <!-- 主體背景顏色值 --> <item android:bottom="1dp"> <!--設(shè)置只有底部有邊框--> <shape> <solid android:color="#ffffff" /> </shape> </item> </layer-list>
2.然后在LinearLayout中引用該布局。就會(huì)出現(xiàn)下邊框
<LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_marginRight="5dp" android:layout_marginLeft="5dp" android:paddingBottom="5dp" android:paddingTop="5dp" android:paddingRight="5dp" android:background="@drawable/linearlayout_underline" android:layout_height="wrap_content"> <TextView android:text="余額:5611.19元" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="@color/red_font" android:textSize="18dp" android:id="@+id/member_balance" android:layout_weight="1" android:textAlignment="textEnd"/> </LinearLayout>
3.實(shí)現(xiàn)的效果圖如下:
上述內(nèi)容就是怎么在Android中使用LinearLayout設(shè)置邊框,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(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)容。