我有一堆卡片视图,其中有文本视图,如下所示:
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:id="@+id/crdView"
android:clickable="true"
android:onClick="onClick"
card:cardUseCompatPadding="true"
card:cardElevation="@dimen/card_elevation"
card:cardCornerRadius="@dimen/card_corner"
card:cardBackgroundColor="@color/darkorange">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:drawableRight="@drawable/arrow_right"
android:drawableEnd="@drawable/arrow_right"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="@dimen/abc_text_size_medium_material"
android:textColor="#FFFFFF"
android:text="@string/text" />
</android.support.v7.widget.CardView>
如您所见,我已将textColor属性设置为白色。但是,当我在不是6.0的任何版本的android中运行该应用程序时,它对文本视图的文本颜色完全没有影响。
到目前为止,我已经尝试过:
更改我的
buildToolsVersion
在gradle中更改支持库本身的版本,可追溯到
'com.android.support:appcompat-v7:23.0.1'
几次完整的清理和重建
尝试以编程方式对其进行设置,这是可行的(但对于20多个具有大量文本视图的活动则完全不可行)
有什么我做不对的事情吗?我现在应该设置其他属性吗?
编辑:如果有帮助,这是我的build.gradle:
apply plugin: 'com.android.application'
android {
defaultConfig {
generatedDensities = []
}
aaptOptions {
additionalParameters "--no-version-vectors"
}
signingConfigs {
signingconfig {
// sanitized
}
}
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "in.myapp"
minSdkVersion 10
targetSdkVersion 23
versionCode 16
versionName "1.1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
debuggable false
zipAlignEnabled true
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
// other libraries
}
最佳答案
请在这里找到我的答案https://stackoverflow.com/a/36545237/343201
显然,此问题是由于Maven本地存储库引起的。将其降级到版本26即可完成工作。