《第一行代码》百分比布局问题解决

步骤
1、在app/build_gradle中dependencies 类中

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'androidx.percentlayout:percentlayout:1.0.0'//新加的
}

2、在activity_main中




    

3效果图
《第一行代码》百分比布局问题解决_第1张图片
4、总结
我太难了 ,整了大半天。查各种,归结原因是现在以及迁移到androidx上了,郭大神的代码需要找androidx对应的映射。
这篇博文给我了解决办法,感谢!
https://www.cnblogs.com/hbuwyg/p/11173649.html

你可能感兴趣的:(Android)