В моем приложении все тексты редактирования, которые я пытаюсь применить в каком-либо пользовательском стиле, или даже просто установить цвет фона, отображаются с черным цветом фона.
Это мой EditText XML:
<EditText
android:id="@+id/editTextSugestaoReclamacao"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/buttonEnviar_faleConosco"
android:layout_below="@+id/spinnerLojasLinenarLayout_defaultLoyaltCard"
android:layout_marginBottom="10dp"
android:gravity="top"
android:hint="@string/fale_conosco"
android:inputType="textMultiLine"
android:background="@drawable/content_layout"
android:lines="5"
android:minHeight="150dp"
android:padding="10dp" >
</EditText>
То есть content_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#FFFFFF"/>
<stroke
android:width="1dp"
android:color="#000000" >
</stroke>
<padding
android:bottom="4dp"
android:left="4dp"
android:right="4dp"
android:top="4dp" >
</padding>
<corners android:radius="2dp" >
</corners>
</shape>
Я что-то упустил?Это может быть проблема совместимости?Я использую targetSdkVersion 27
.На Android 5.1.1 работает нормально, а на Android 7.1.1 нет.