如何在较旧的API级别中使用PercentRelativeLayout?

时间:2018-04-23 15:31:33

标签: android android-layout android-percentrelativelayout

我在这里写的是因为我有一个很大的问题:我使用PercentRelativeLayout为Android开发了一个非常大的Android应用程序(我知道现在它已被弃用但是当我完成项目并且我不能重写它时)。

我已经在多个设备上尝试过该应用程序并且它运行良好,但不幸的是,当我在运行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上工作,请告诉我。

提前致谢。

0 个答案:

没有答案