我正在尝试更改EditText光标指针颜色(从原色蓝色变为白色),但没有解决方案适用于我的项目。我试图开发演示项目,其中相同的代码工作正常。 此代码适用于> = android 5.0
我不知道,我的值会覆盖哪个属性。我有两种方法可以解决这个问题: - 1.找到控制该颜色值的属性 2.页面加载时(在onViewCreated中)通过java代码更改颜色值。
请建议如何解决此问题。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="my_text_layout_style">
<item name="android:textColor">#FFF</item>
<item name="android:textColorHint">#FFF</item>
<item name="colorAccent">#FFF</item>
<item name="colorControlNormal">#FFF</item>
<item name="colorControlActivated">#FFF</item>
<item name="colorControlHighlight">#FFF</item>
</style>
<style name="my_edit_text_style">
<item name="colorAccent">#FFF</item>
<item name="android:editTextStyle">@style/MyEditTextStyle</item>
</style>
<style name="MyEditTextStyle" parent="Widget.AppCompat.EditText" />
</resources>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/base_disable_btn_bg_color"
android:orientation="vertical">
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:hint="just a hint"
app:hintTextAppearance="@style/my_text_layout_style"
android:theme="@style/my_text_layout_style"
android:layout_height="wrap_content">
<android.support.design.widget.TextInputEditText
android:layout_width="match_parent"
android:theme="@style/my_edit_text_style"
android:layout_height="wrap_content" />
</android.support.design.widget.TextInputLayout>
</LinearLayout>
AppLinearLayout appLinearLayout = (AppLinearLayout) view.findViewById(R.id.some_id);
EditText editText = new EditText(new ContextThemeWrapper(getContext(), R.style.AppTheme_Cursor));
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
editText.setLayoutParams(params);
appLinearLayout.addView(editText);
答案 0 :(得分:3)
试试这个link。对我来说,它有效。
并且,您可以在此处drawables
找到并修改SDK
:Android\sdk\platforms\YOUR_ANDROID_VERSION\data\res at drawables-*dpi
。
您可以copy and modify
color/form
作为您的意愿。
答案 1 :(得分:2)
试试这个解决方案:
在EditText
:android:textCursorDrawable="@drawable/cursor_color"
在drawable
中,创建:cursor_color.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:width="1dp" />
<solid android:color="#c8c8c8" />
答案 2 :(得分:1)
在attribute
:
EditText
android:textCursorDrawable="@null"
答案 3 :(得分:1)
您只能为此style/theme
创建自己的EditText
并更改ColorAccent
:
<style name="EditTextColorCustom" parent="@style/AppBaseTheme">
<!-- Customize your theme here. -->
<item name="colorAccent">@color/colorAccent</item>
</style>
在style
文件夹的values-21
中使用此内容。
答案 4 :(得分:1)
制作新的drawable
。
此处cursor.xml
:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<size android:width="2dp" />
<solid android:color="#EF5350"/>
<stroke android:color="#EF5350"/>
</shape>
并在EditText
中使用它,如下所示:
<EditText
android:id="@+id/ed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/roundedcornerwhite"
android:hint="edit text"
android:paddingBottom="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:maxLines="1"
android:singleLine="true"
android:imeOptions="actionNext"
android:textColor="@color/colorPrimaryText"
android:textColorHint="@color/hintcolor"
android:textCursorDrawable="@drawable/cursor"
android:textSize="16sp" />
更新:
只需创建一个像
这样的新主题<style name="themex" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimaryDark">#666666</item>
<item name="android:listDivider">@color/white_pressed</item>
<item name="colorPrimary">@color/colorIcons</item>
<item name="android:textColor">#b6b6b6</item>
<item name="android:windowDisablePreview">true</item>
<item name="colorControlActivated">@color/olagreen</item>
<item name="android:windowAnimationStyle">@null</item>
</style>
这里colorcontrolactivated将是你的问题的答案。并将此主题添加到您的活动中,并删除您在ur layout中给edittext的样式 -
<activity
android:name="youractivityname"
android:parentActivityName="com.example.AboutUs"
android:screenOrientation="portrait"
android:theme="@style/themex"/>
更新:
如果当时不起作用,只需检查您的片段是否在活动内,并为该活动提供了正确的主题。该片段也将具有此主题。如果它不起作用,那么试试这个 -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayout"
style="@style/themex"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorIcons"
android:orientation="vertical"
android:weightSum="2">
</RelativeLayout>
我希望这会对你有所帮助。
答案 5 :(得分:1)
我用过这个,它正确地与我合作。
<style name="edittext" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorControlNormal">@color/gray</item>
<item name="colorControlActivated">@color/colorAccent</item>
<item name="colorControlHighlight">@color/colorAccent</item>
<item name="android:textColor">@color/white</item>
<item name="android:textColorHint">@color/gray</item>
</style>
<EditText
android:id="@+id/email"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="30dp"
android:gravity="center"
android:hint="@string/email_address"
android:inputType="textEmailAddress"
android:padding="@dimen/padding_16"
android:textColor="@color/white"
android:textColorHint="@color/login_color"
android:textCursorDrawable="@color/mdtp_white"
android:theme="@style/edit" />
答案 6 :(得分:0)
我在SO上找到了很少的答案,并找到了最好的方法:
在android sdk文件夹中查找原始drawable (\ Android的SDK \平台\机器人-23 \的android.jar \水库\抽拉-HDPI-V4)
使用编辑器编辑这些图像并将它们放在可绘制的文件夹中。
在您的样式中添加以下行:
<item name="android:textSelectHandle">@drawable/my_drawable_handle</item>
<item name="android:textSelectHandleLeft">@drawable/my_drawable_handle_left</item>
<item name="android:textSelectHandleRight">@drawable/my_drawable_handle_right</item>
结果:
答案 7 :(得分:0)
<style name="my_edit_text_style">
<item name="colorAccent">#FFF</item>
<item name="android:editTextStyle">@style/MyEditTextStyle</item>
<item name="colorAccent">#FFF</item>
<item name="colorControlNormal">#FFF</item>
<item name="colorControlActivated">#FFF</item>
</style>
这可能会对你有帮助。