gpt4 book ai didi

android - 如何将相对布局的宽度和高度设置为屏幕的一半

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:43:19 25 4
gpt4 key购买 nike

我正在开发一个 android 应用程序,我想将我的相对布局的宽度和高度设置为屏幕宽度和高度的一半。

谢谢

最佳答案

使用 Parent 作为 LinearLayout 并使用 weightSumweight 属性

示例

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="100" >

<RelativeLayout
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="50" >

<!-- Your RelativeLayout Items -->

</RelativeLayout>

</LinearLayout>

关于android - 如何将相对布局的宽度和高度设置为屏幕的一半,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21036929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com