2013-01-17 65 views
1

我在我的android應用程序中使用AutoCompleteTextView。我使用Theme.Light作爲我的應用程序的默認主題。如何在android中更改默認主題的AutoCompleteTextView邊框顏色?

下面是我的AutoCompleteTextView樣子 enter image description here

現在,我想的是AutoCompleteTextView的藍色邊框更改爲其他的顏色,不同的選擇,保持邊框的樣式,因爲它作爲。我不想要完整的邊框。怎麼做?

+0

試試這個http://stackoverflow.com/questions/11485595/change-edittext-border-color –

回答

0

你可以嘗試這樣的..

看到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

+0

@Janmejoy ..你能告訴我如何改變上面的藍色到紅色 – Bharath

+0

@TaruniNeema你想要改變主題或只有邊框 – Janmejoy

+0

@TaruniNeema試試這個鏈接的主題..http://janrain.com/blog/introduction-to-android-theme-customization/ – Janmejoy

0

您可以使用Holo Colors來爲其着色。它生成9個補丁和樣式。

相關問題