作为小白首选的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版本,要对应的。
最后是这样的。