我在我的android應用程序中使用AutoCompleteTextView
。我使用Theme.Light
作爲我的應用程序的默認主題。如何在android中更改默認主題的AutoCompleteTextView邊框顏色?
下面是我的AutoCompleteTextView
樣子
現在,我想的是AutoCompleteTextView
的藍色邊框更改爲其他的顏色,不同的選擇,保持邊框的樣式,因爲它作爲。我不想要完整的邊框。怎麼做?
我在我的android應用程序中使用AutoCompleteTextView
。我使用Theme.Light
作爲我的應用程序的默認主題。如何在android中更改默認主題的AutoCompleteTextView邊框顏色?
下面是我的AutoCompleteTextView
樣子
現在,我想的是AutoCompleteTextView
的藍色邊框更改爲其他的顏色,不同的選擇,保持邊框的樣式,因爲它作爲。我不想要完整的邊框。怎麼做?
你可以嘗試這樣的..
看到http://www.androidworks.com/changing-the-android-edittext-ui-widget的細節
對於其他主題的實現去這樣 在您的清單中的應用
android:theme="@style/firsttheme"
在res /值,您可以define theme.xml
<resources>
<style name="firsttheme" parent="@android:style/Theme" >
<item name="android:_DEFAULT_BASE_COLOR_1">#XXXXXX</item>
<item name="android:windowNoTitle">true</item>
... .
</style>
</resources>
欲瞭解更多信息,請致電theme
您可以使用Holo Colors來爲其着色。它生成9個補丁和樣式。
試試這個http://stackoverflow.com/questions/11485595/change-edittext-border-color –