Android UI百分比布局
程序员文章站
2022-04-01 10:44:54
演示百分比布局代码
演示百分比布局代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.percentlayout.widget.PercentFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<Button
android:id="@+id/button1"
android:text="Button1"
android:layout_gravity="left|top"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%">
</Button>
<Button
android:id="@+id/button2"
android:text="Button2"
android:layout_gravity="right|top"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%">
</Button>
<Button
android:id="@+id/button3"
android:text="Button3"
android:layout_gravity="left|bottom"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%">
</Button>
<Button
android:id="@+id/button4"
android:text="Button4"
android:layout_gravity="right|bottom"
app:layout_widthPercent="50%"
app:layout_heightPercent="50%">
</Button>
</androidx.percentlayout.widget.PercentFrameLayout>
————————————————
版权声明:本文为CSDN博主「渣渣付」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_44577413/article/details/104208101
本文地址:https://blog.csdn.net/lhxdg/article/details/107165342
推荐阅读
-
Android进阶教程之ViewGroup自定义布局
-
如何在android中使用html作布局文件
-
Android UI之ImageView实现图片旋转和缩放
-
Android自定义View圆形百分比控件(一)
-
Android实现快递物流跟踪布局效果
-
android流式布局onLayout()方法详解
-
浅谈AnDroidDraw+DroidDraw实现Android程序UI设计的分析说明
-
Android 在其他线程中更新UI线程的解决方法
-
Android编程双重单选对话框布局实现与事件监听方法示例
-
android 常用布局文件(LinearLayout,RelativeLayout,FrameLayout,ConstraintLayout,TableLayout)