答案 0 :(得分:19)
您可以更改所有EditText
个气泡,并在colors
中设置AppTheme
设置强调色。
<style name="AppTheme" parent="Base.Theme.AppCompat.Light">
<item name="colorPrimary">@color/indigo</item>
<item name="colorAccent">@color/pink</item>
</style>
或者您只需使用组件的EditText
属性更改一个android:theme
。
<style name="MyEditText" parent="Theme.AppCompat.Light">
<item name="colorControlNormal">@color/indigo</item>
<item name="colorControlActivated">@color/pink</item>
</style>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hint text"
android:theme="@style/MyEditText"
/>
答案 1 :(得分:13)
更改res/values/styles.xml
中的颜色。泡泡使用colorAccent
:
<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/DarkBlue</item>
<item name="colorPrimaryDark">#01517f</item>
<item name="colorAccent">@color/Gray2</item>
上面的<item name="colorAccent">@color/Gray2</item>
是您为气泡添加所需颜色的行。
答案 2 :(得分:2)
<强> http://developer.android.com/training/material/theme.html#ColorPalette 强>
<resources>
<!-- inherit from the material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Main theme colors -->
<!-- your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
</style>
</resources>
并检查一下:主题用户界面控件,如checkboxes
和text fields
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
难以找到吗? :)
答案 3 :(得分:2)
您需要更改主题colorControlActivated颜色。
source:Android源代码中text_select_handle的默认实现。
if (browser.equals("Chrome"))
{
String chromeDriver = "";
if (os.equals("Windows"))
{
chromeDriver = userDir.replace(project, "drivers\\chromedriver.exe");
}
else
{
chromeDriver = userDir.replace(project, "drivers/chromedriver");
}
System.setProperty("webdriver.chrome.driver", chromeDriver);
if (useSeleniumGrid.equals("true"))
{
// Access Grid
DesiredCapabilities capability = DesiredCapabilities.chrome();
capability.setBrowserName("chrome");
driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);
}
else
{
driver = new ChromeDriver();
}
} // end if for Chrome browser
答案 4 :(得分:0)
您应该更改“ colorAccent”,并且为了不更改整个应用程序的此参数,可以使用ThemeOverlay。您可以在this article(最后一个主题“光标和选择”)中阅读更多详细信息