gpt4 book ai didi

Android 布局最大宽度或屏幕宽度?

转载 作者:行者123 更新时间:2023-11-30 01:49:42 27 4
gpt4 key购买 nike

是否可以将 child 的宽度设置为固定宽度,除非屏幕小于该宽度?

即我希望下面的 CardView 通常为 400dp,除非它在小屏幕上,此时它应该是屏幕宽度(减去边距)...

<cdudigital.com.conjugator.MyLinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
tools:context=".GameActivity">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="3dp">
</android.support.v7.widget.CardView>
</cdudigital.com.conjugator.MyLinearLayout>

最佳答案

Xml 解决方案,ConstraintLoyout + children:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<androidx.cardview.widget.CardView
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_max="400dp">
</androidx.constraintlayout.widget.ConstraintLayout>

参见 Android using Linear layout maxWidth, not work with fill_parent Roland van der Linden 回应。

防止 child 大于最大 400dp,但可能更小。

enter image description here

关于Android 布局最大宽度或屏幕宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33246780/

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