我写在这里是因为我有一个很大的问题:我为 Android 开发了一个相当大的应用程序,到处都使用 PercentRelativeLayout(我知道现在它已被弃用,但当我完成项目时还没有,我无法全部重写)。
我已经在多个设备上尝试过该应用程序,它运行良好,但不幸的是,当我在运行 Lollipop 5.1.1 的设备上尝试它时,我发现所有使用百分比值的视图都没有显示。
然后,我决定使用 Android Studio 在不同的模拟器上尝试该应用程序,我发现只有 API >= 25 的设备才能呈现这些视图。
这是我的 build.gradle 内容:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
defaultConfig {
applicationId "com.zone.myapplication"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.1.0'
compile 'com.android.support:cardview-v7:25.1.0'
compile 'de.hdodenhof:circleimageview:2.1.0'
testCompile 'junit:junit:4.12'
implementation 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:percent:25.0.1'
implementation files('libs/json-simple-1.1.1.jar')
compile 'com.google.android.gms:play-services:9.4.0'
compile 'com.eyalbira.loadingdots:loading-dots:1.0.2'
compile 'com.google.android.gms:play-services-ads:9.4.0'
}
如果你们中的任何人知道如何使它在旧 API 上也能正常工作,请告诉我。
提前致谢。