So I changed the style of the Holo Theme with the Holo Colors Generator and Action Bar Style Generator to my own color. But when I select text inside an edit text, the \"mar
You can see these attributes in http://androiddrawables.com/Other.html.
Change your values/styles.xml, for instance:
where @color/cursor is added in values/color.xml. After that apply the style to the activity:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTheme(R.style.AppTheme_Cursor);
...
Visit How to change EditText pointer color (not cursor) for other solutions.