按鈕的邊框有一些繼承問題。但我找到了最好的辦法。假設你想只在按鈕左側有一個邊框。在按鈕被放置在MainActivity xml文件做這樣的 -
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/newstyle"
android:orientation="vertical" >
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:gravity="center_vertical"
android:paddingLeft="10sp"
android:text="Button"
android:textAllCaps="false"
android:textColor="#939393"
android:textSize="20sp" />
</LinearLayout>
對於將在繪製使用位於此代碼newstyle.xml文件 -
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:bottom="0sp"
android:left="-2sp"
android:right="-2sp"
android:top="-2sp">
<shape android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke
android:width="1sp"
android:color="#d6d6d6" />
</shape>
</item>
</layer-list>
所以整個想法是 - 保持按鈕的背景爲@null並將按鈕保持在linera佈局中。給背景的襯墊佈局和瞧,它完成.. :) ..
你試過'android:drawableLeft' – DjHacktorReborn 2013-03-13 06:54:39
@DjHacktorReborn:'android:drawableLeft'不是解決方案。嘗試其中之一:http://stackoverflow.com/questions/2422120/open-sided-android-stroke或http://stackoverflow.com/questions/9211208/how-to-draw-border-on-just-one線性佈局 – 2013-03-13 06:56:09