Android studio,LinearLayout“匹配父项-常量”
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android studio,LinearLayout“匹配父项-常量”相关的知识,希望对你有一定的参考价值。
我的问题是:我如何设置线性布局高度->例如匹配父级-50 dp?我需要我的线性布局才能让我在他下方的某个位置放一个按钮
我在此LinearLayout的滚动视图中动态生成按钮,因此我无法使用
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="100dp">
因为marginBottom将在LinearLayout下按下我的按钮,使“ matchParent”
所以我可以做matchParent -50 dp或类似的东西吗?
答案
您实际上可以尝试将线性布局放入约束布局内,这使您能够选择50dp作为底部边距。
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_marginBottom="50dp">
</androidx.constraintlayout.widget.ConstraintLayout>
以上是关于Android studio,LinearLayout“匹配父项-常量”的主要内容,如果未能解决你的问题,请参考以下文章