gpt4 book ai didi

java - 从根元素访问自定义 XML 属性

转载 作者:行者123 更新时间:2023-12-01 12:25:02 24 4
gpt4 key购买 nike

我扩展了 ViewGroup 并在 Android 中创建了一个自定义布局类。我还定义了一些自定义 XML 属性来帮助定位 subview 。我需要访问根 XML 元素(自定义布局)上的几个自定义 xml 属性(自定义:view_height 和自定义:view_width),但是当我尝试从布局 java 类访问它们时,TypedArray 为 null,就像这样看不到他们。他们在 child 观点上工作得很好。关于如何从根目录访问自定义 XML 属性,有什么想法吗?谢谢!

查看代码:

<?xml version="1.0" encoding="utf-8"?>
<package.of.my.CustomLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_height="match_parent" android:layout_width="match_parent"
android:orientation="vertical"
android:background="@drawable/homecell_selector"
custom:view_width="400" // I need this!!
custom:view_height="200" // I need this!!
>

<Button android:id="@+id/postText" android:layout_marginLeft="20dp"
android:layout_marginTop="45dp" android:layout_height="wrap_content"
android:layout_width="wrap_content" android:alpha="1"
android:background="@color/HEX_FFFFFFFF" android:textColor="@color/HEX_000"
android:textSize="15sp" android:visibility="visible" android:gravity="left"
custom:view_width="0.87610022270753"
custom:eHeight="true"
custom:view_height="0.44296926842493"
custom:eWidth="true"
custom:originX="RIGHT"
custom:x="0.061399777292469"
custom:eX="true"
custom:originY="BOTTOM"
custom:y="0.1682145166653"
custom:eY="true"/>

<Button android:id="@+id/firstNameLastNameShortText" android:layout_marginLeft="21dp"
android:layout_marginTop="8dp" android:layout_height="18dp"
android:layout_width="276dp" android:alpha="1"
android:background="@color/HEX_2087fc" android:textColor="@color/HEX_000"
android:textSize="15sp" android:visibility="visible" android:gravity="left"
custom:view_width="0.86433765030597"
custom:eHeight="true"
custom:view_height="0.15716154473749"
custom:eWidth="true"
custom:originX="LEFT"
custom:x="0.065625" custom:eX="true"
custom:originY="TOP"
custom:y="0.069849575438883"
custom:eY="true"/>
</package.of.my.CustomLayout>

最佳答案

实际上你不需要这些。因为你需要宽度和高度。无论您想要添加到自定义 View 中的宽度和高度如何,都应该将它们直接添加到 android:layout_width 和 android:layout_height 标记中。

关于java - 从根元素访问自定义 XML 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26433544/

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