android obtainStyledAttributes工作错误

a0zr77ik  于 2023-06-20  发布在  Android
关注(0)|答案(2)|浏览(122)

我正在创建自己的键盘。使用Android Keyboard对我的任务来说是不够的,所以我决定直接从View.class创建继承者类。作为基础,我决定使用Keyboard.class的代码,然后开始逐个更改。
我在编译这个类的时候遇到了很多问题,使用了一些反射和技巧来获取私有字段。我创建了文件attrs,以便能够使用键盘的属性和标签。最后,类编译并知道它崩溃了,因为参数,应该从膨胀,是空的。
我发现context.obtainStyledAttributes(attrs,R.styleable.MyKeyboardView);返回错误的结果和. getIndexCount();之后返回0。
下面是我的attr.xml文件:

<resources>
<declare-styleable name="MyKeyboardView">
    <attr name="keyBackground" format="reference" />
    <attr name="keyTextSize" format="dimension" />
    <attr name="labelTextSize" format="dimension" />
    <attr name="state_long_pressable" format="boolean" />
    <attr name="keyTextColor" format="color" />
    <attr name="keyPreviewLayout" format="reference" />
    <attr name="keyPreviewOffset" format="dimension" />
    <attr name="keyPreviewHeight" format="dimension" />
    <attr name="verticalCorrection" format="dimension" />
    <attr name="shadowColor" format="color" />
    <attr name="shadowRadius" format="float" />
    <attr name="backgroundDimAmount" format="float" />
    <attr name="popupLayout" format="reference" />
</declare-styleable>

下面是我键盘类的一部分:

public MyKeyboardView(Context context, AttributeSet attrs) {
    this(context, attrs, Resources.getSystem().getIdentifier("keyboardViewStyle", "attr", "android"));
}

public MyKeyboardView(Context context, AttributeSet attrs, int defStyleAttr) {
    this(context, attrs, defStyleAttr, 0);
}

public MyKeyboardView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
    super(context, attrs, defStyleAttr, defStyleRes);

    TypedArray a = context.obtainStyledAttributes(
            attrs, R.styleable.MyKeyboardView);

    LayoutInflater inflate =
            (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    int previewLayout = 0;
    int keyTextSize = 0;

    int n = a.getIndexCount();

这是我在布局中使用键盘的方式:

<FrameLayout
    android:layout_width="wrap_content"
    android:layout_height="240dp"
    android:layout_gravity="bottom">
    <com.test.features.keyboard.MyKeyboardView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/keyboard_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingTop="2.5dip"
        android:keyPreviewHeight="@dimen/key_height"
        android:shadowRadius="0"
        android:keyPreviewLayout="@layout/keyboard_key_preview"
        android:keyPreviewOffset="0dp"
        android:keyBackground="@drawable/keyboard_key_background"
        android:keyTextColor="@color/keyboard_key_color"
        android:background="@color/primary"
        android:popupLayout="@layout/keyboard_popup_layout"/>

我尝试这样使用它,length()返回11,但switch case几乎没有找到匹配项。如果找到,则使用默认值:

int n = a.length();

    for (int i = 0; i < n; i++) {
        int attr = a.getIndex(i);

        switch (attr) {
            case R.styleable.MyKeyboardView_keyBackground:
                mKeyBackground = a.getDrawable(attr);
                break;
            case R.styleable.MyKeyboardView_verticalCorrection:
                mVerticalCorrection = a.getDimensionPixelOffset(attr, 0);
                break;
            case R.styleable.MyKeyboardView_keyPreviewLayout:
                previewLayout = a.getResourceId(attr, 0);
                break;
            case R.styleable.MyKeyboardView_keyPreviewOffset:
                mPreviewOffset = a.getDimensionPixelOffset(attr, 0);
                break;
            case R.styleable.MyKeyboardView_keyPreviewHeight:
                mPreviewHeight = a.getDimensionPixelSize(attr, 80);
                break;
            case R.styleable.MyKeyboardView_keyTextSize:
                mKeyTextSize = a.getDimensionPixelSize(attr, 18);
                break;
            case R.styleable.MyKeyboardView_keyTextColor:
                mKeyTextColor = a.getColor(attr, 0xFF000000);
                break;
            case R.styleable.MyKeyboardView_labelTextSize:
                mLabelTextSize = a.getDimensionPixelSize(attr, 14);
                break;
            case R.styleable.MyKeyboardView_popupLayout:
                mPopupLayout = a.getResourceId(attr, 0);
                break;
            case R.styleable.MyKeyboardView_shadowColor:
                mShadowColor = a.getColor(attr, 0);
                break;
            case R.styleable.MyKeyboardView_shadowRadius:
                mShadowRadius = a.getFloat(attr, 0f);
                break;
        }
    }
qmelpv7a

qmelpv7a1#

您的自定义View属性将位于您的应用的命名空间中,而不是系统命名空间中,因此当它们具有系统命名空间前缀时,在给定的AttributeSet中找不到它们。
直接在<MyKeyboardView>标记中或在祖先标记中添加xmlns:app="http://schemas.android.com/apk/res-auto"名称空间声明,并将所有属性的前缀更改为app
请注意,前缀可以是您喜欢的任何有效名称,尽管app可能是最常见的。

rryofs0p

rryofs0p2#

如果你不需要你的属性是可样式化的,你可以不使用“declare-styleable”。只需将属性放在“com.test.features.keyboard.MyKeyboardView”标签中,不带任何名称空间前缀,并像这样获取它们的值:

attrs.getAttributeIntValue( null, "your_attribute", 0 );

相关问题