標籤:android http color io ar sp on 問題 log
============問題描述============
下面是我的測試代碼,最終效果LinearLayout有灰色邊框,要怎樣保留底部或頂部的邊框,其它三個方向的邊框去掉?
boder.xml
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" > <stroke android:width="0.01dp" android:color="#C6C7CE" /> <padding android:bottom="5dp" android:top="5dp" android:left="5dp" android:right="5dp" /></shape>
text.xml
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" android:gravity="center" android:background="@drawable/boder" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/log_name"/> </LinearLayout> </LinearLayout>
============解決方案1============
<padding
android:bottom="5dp"
android:top="5dp"
android:left="5dp"
android:right="5dp" />
左右為0不就行了
============解決方案2============
可以附帶,這樣會跟更好分析點
android用shape給linearLayout設定邊框,怎樣只保留底部或頂部的邊框,把其它三個方向的邊框去掉呢?