gpt4 book ai didi

android - PercentRelativeLayout - layout_width 缺少警告

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

我正在尝试支持库中的 PercentRelativeLayout 和 the docs只要求我指定一个 app:layout_widthPercent 属性。但是,当我这样做时,Android Studio 会给我一个红色警告,指出 layout_width 未指定。

除了抑制警告之外,还有其他办法吗?

例如:

    <android.support.percent.PercentRelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.design.widget.TextInputLayout
android:id="@+id/expiry_month_wrapper"
app:layout_widthPercent="25%"
android:layout_height="wrap_content">
<EditText
android:id="@+id/expiry_month_editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLength="2"
android:hint="@string/month"
android:focusable="true"
android:inputType="number"/>
</android.support.design.widget.TextInputLayout>

<!-- more TextInputLayout fields -->

</android.support.percent.PercentRelativeLayout>

在 TextInputLayout 上发出警告。

最佳答案

按照惯例,layout_width 和 layout_height 都需要包括在内,即使它们在功能上分别被 PercentRelativeLayout 的 app:layout_widthPercent 和 app:layout_aspectRatio 忽略。

在您的情况下,通过单独使用 app:layout_widthPercent,只需将 android:layout_width 设置为任意数量的密度无关像素即可消除警告。

例如:android:layout_width = "0dp"

关于android - PercentRelativeLayout - layout_width 缺少警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33682512/

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