gpt4 book ai didi

android - textView textColor 在设备上不生效

转载 作者:行者123 更新时间:2023-11-30 01:21:56 26 4
gpt4 key购买 nike

我有这样的布局。这里我将 textColor 设置为红色。

当我在模拟器上运行它时,一切都按预期工作。但是,当我在设备上运行时,textColor 是白色的。它曾经在设备上工作。

我用模拟器做了很多代码重构。我可能已经更改了可能导致此问题的内容。我希望其他人是否遇到过类似的问题。

        <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="EXAMPLE"
android:textColor="@color/red"
android:textSize="60sp" />

可能是什么问题?

android {
dexOptions {
javaMaxHeapSize "6g"
}
compileSdkVersion 23
buildToolsVersion "23.0.2"
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
defaultConfig {
applicationId "someID"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
productFlavors {
dev {
minSdkVersion 15
}
prod {
minSdkVersion 15
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}

最佳答案

我通过清理所有构建目录并清理/重建解决了这个问题。

我还从 .gradle 中删除了 productflavors/devDebug。这一定是导致问题的原因,因为我是为 minSDKVersion 15 配置的,而我试图在 22 上运行。

来自 Android 文档:

android {
productFlavors {
// Define separate dev and prod product flavors.
dev {
// dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
// to pre-dex each module and produce an APK that can be tested on
// Android Lollipop without time consuming dex merging processes.
minSdkVersion 21
}
prod {
// The actual minSdkVersion for the application.
minSdkVersion 14
}
}
...
buildTypes {
release {
runProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}

关于android - textView textColor 在设备上不生效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36962136/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com