百分比布局导入依赖以及使用——第一行代码

作为小白首选的Android入门书籍在各大平台上推荐的就是《第一行代码》。
但是第一行代码的Android版本太低了,所以会遇到很多小白解决不了的问题,比如安卓中版本规则的修改问题。今天就针对《第一行代码》中的百分比布局与大家讨论和分享我的修改历程(主要是记录)
在这里插入图片描述
对应上面图片的修改

    implementation 'com.android.support:appcompat-v7:32.0.0'
    implementation 'com.android.support:percent:32.0.0'
    implementation 'androidx.percentlayout:percentlayout:1.0.0'

我在我的build.gradle中添加了这几句,最初我输入的版本也是24.2.1版本但是系统提示版本不对,查看之后发现我的targetSdk 32所以应该使用32版本的之后再点击Sync Now就可以了(这个在右上角)。这样在build.gradle中就不报错啦
然后在activity_main.xml中输入以下代码就可以了

<androidx.percentlayout.widget.PercentFrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/btn_1"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button1"
        android:textSize="20sp"
        android:layout_gravity="left|top"
        app:layout_heightPercent = "50%"
        app:layout_widthPercent = "50%"/>
    <Button
        android:id="@+id/btn_2"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button2"
        android:textSize="20sp"
        android:layout_gravity="right|top"
        app:layout_heightPercent = "50%"
        app:layout_widthPercent = "50%"/>
    <Button
        android:id="@+id/btn_3"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button3"
        android:textSize="20sp"
        android:layout_gravity="left|bottom"
        app:layout_heightPercent = "50%"
        app:layout_widthPercent = "50%"/>
    <Button
        android:id="@+id/btn_4"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:text="Button4"
        android:textSize="20sp"
        android:layout_gravity="right|bottom"
        app:layout_heightPercent = "50%"
        app:layout_widthPercent = "50%"/>



</androidx.percentlayout.widget.PercentFrameLayout >

这里值得一提的是经过第一步的步骤最外面的标签以及不报错了,但是Button报错,主要是因为

        android:layout_width="0dp"
        android:layout_height="0dp"

这两个属性没有写,添加这个属性我们可以不用啊,直接设为0dp就可以啦。其他就照常写。

========
还有就是写的时候可能没有写完也会报错的,所以读者不妨先将我的代码复制到自己的Android Studio中看看报错不报错,然后再自己写一遍。
一定要看自己的targetSdk版本,要对应的。
在这里插入图片描述
最后是这样的。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值