gpt4 book ai didi

android - 在我的自定义 android View 中添加自定义字符串属性

转载 作者:太空宇宙 更新时间:2023-11-03 10:30:24 25 4
gpt4 key购买 nike

我有一个从 TableLayout 派生的自定义 View ,我需要声明 String 属性 Title,如下所示:

<com.mycompany.controls.NavigationControllerView
xmlns:app="http://schemas.usetech.com/apk/res/onroad"
title="@string/nav_title"
...
/>

(能够通过资源引用指定值)。我在 values/attrs.xml 中指定了这个属性:

<declare-styleable name="NavigationControllerView">
<attr name="title" format="string"/>
...
</declare-styleable>

在我的代码中,我正在尝试:

public class NavigationControllerView extends TableLayout {
public NavigationControllerView(Context context, AttributeSet attrs) {
super(context, attrs);
View.inflate(getContext(), R.layout.inc_header, this);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.NavigationControllerView);
CharSequence title = a.getString(R.styleable.NavigationControllerView_title);
if (title != null)
setTitle(title.toString());
}
...

但运气不好,标题总是空的。你知道我哪里错了吗?

最佳答案

你应该使用

<com.mycompany.controls.NavigationControllerView
xmlns:app="http://schemas.android.com/apk/res/onroad"
app:title="@string/nav_title"
... />

不要错过 app: 前缀。还应使用正确的命名空间 uri。

关于android - 在我的自定义 android View 中添加自定义字符串属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6569998/

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