gpt4 book ai didi

android - 有没有办法避免 android 布局的尺寸规范?

转载 作者:搜寻专家 更新时间:2023-11-01 08:53:27 25 4
gpt4 key购买 nike

我每天都使用 Android,我想避免 View 大小的规范。例如,如果我创建一个 TextView,我必须分配 Height 和 Width 属性,如下所示:

   <TextView
android:id="@+id/activity_lbl"
android:layout_width="wrap_content" <!-- Again -->
android:layout_height="wrap_content" <!--Again... --> />

<TextView
android:id="@+id/activity_lbl2"
android:layout_width="wrap_content" <!-- Again... -->
android:layout_height="wrap_content" <!--Again, for ever --> />

对于我创建的每个 View ,我都必须分配相同的尺寸规范。有没有办法避免它们?

最佳答案

在您将在布局文件中应用的样式中声明它,如下所示:

文件:res/values/styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="wrapall">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
</resources>

然后像这样将它应用到您的布局中:

<TextView
android:id="@+id/activity_lbl"
style="@style/wrapall" />

<TextView
android:id="@+id/activity_lbl2"
style="@style/wrapall" />

关于android - 有没有办法避免 android 布局的尺寸规范?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21024570/

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