gpt4 book ai didi

android - 高度一半 fill_parent xml

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:54:11 26 4
gpt4 key购买 nike

如何在 xml 中使用 LinearLayout height half fill_parent

<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1">
<ImageView android:layout_height="fill_parent"
android:layout_width="0dp"
android:layout_weight="0.5"/>
</LinearLayout>

我想对高度做类似的事情。

最佳答案

我只想用 1 个 linearLayout 半屏,用另一个 linearLayout 半屏

试试这个

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2"
android:orientation="vertical" >

<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#192832"></LinearLayout>

<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#193222"></LinearLayout>


</LinearLayout>

两个线性布局各占屏幕的一半。

关于android - 高度一半 fill_parent xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16748872/

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