gpt4 book ai didi

android - 使用 declare styleable 设置自定义组件输入类型

转载 作者:IT老高 更新时间:2023-10-28 21:36:48 28 4
gpt4 key购买 nike

我有一个 CompositeComponent (EditText+ImageButton)单击按钮时,edittext 内容将被清除。它工作正常。我的问题是为我的组件设置属性。我正在使用 declare-styleable 为我的组件设置属性。

我成功设置了 minLines、maxLines 和 textColor。

如何通过 xml 将 inputtype 设置为我的组件。

我的属性.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CET">
<attr name="MaxLines" format="integer"/>
<attr name="MinLines" format="integer"/>
<attr name="TextColor" format="color"/>
<attr name="InputType" format="integer" />
<attr name="Hint" format="string" />
</declare-styleable>
</resources>

以及main_layout.xml中mycomponent的用法:

<com.test.ui.ClearableEditText
xmlns:cet="http://schemas.android.com/apk/res/com.test.ui"
android:id="@+id/clearableEditText2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
cet:MaxLines="2"
cet:MinLines="1"
cet:TextColor="#0000FF"
cet:InputType="" <---I cant set this property--------->
cet:Hint="Clearable EditText Hint">

</com.test.ui.ClearableEditText>

普通的Edittext用法:

<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="numberSigned" <--------I want to use this property--------> >

我不能在我的 attribute.xml 中使用 ENUM。如何在我的 cet:InputType 中引用 android:inputType="numberSigned"

编辑:

这就是我在 ClearableEditText.java 中分配属性的方式

TypedArray a = getContext().obtainStyledAttributes(attrs,R.styleable.CET,0, 0);

int minLines = a.getInt(R.styleable.CET_MinLines, 1);
int maxLines = a.getInt(R.styleable.CET_MaxLines, 100);
String hint = a.getString(R.styleable.CET_Hint);
int textColor = a.getColor(R.styleable.CET_TextColor, Color.BLACK);
int inputType = a.getInt(R.styleable.CET_InputType, -108);

Log.i(TAG, "ClearableEditText: Min Line "+minLines +" Max Lines: "+maxLines+" Hint "+hint+" Color: "+textColor+" Input Type: "+inputType);

edit_text.setMaxLines(maxLines);
edit_text.setMinLines(minLines);
edit_text.setTextColor(textColor);
edit_text.setHint(hint);
if(inputType != -108)
edit_text.setInputType(inputType);

您可以看到将 inputType 属性分配给 editText 没有问题。

最佳答案

假设您有一个名为 InputView 的自定义 View ,它不是 TextView(假设它是 RelativeLayout)。

在你的 attrs.xml 中:

<declare-styleable name="InputView">

<!-- any custom attributes -->
<attr name="title" format="string" />

<!-- standart attributes, note android: prefix and no format attribute -->
<attr name="android:imeOptions"/>
<attr name="android:inputType"/>

</declare-styleable>

在要包含 InputView 的 xml 布局中:

<!-- note xmlns:custom and com.mycompany.myapp -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<!-- note that you will be using android: prefix for standart attributes, and not custom: prefix -->
<!-- also note that you can use standart values: actionNext or textEmailAddress -->
<com.mycompany.myapp.InputView
android:id="@+id/emailField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
custom:title="@string/my_title"
android:imeOptions="actionNext|flagNoExtractUi"
android:inputType="textEmailAddress" />

</FrameLayout>

在您的自定义类中,您可以像往常一样提取属性:

    ...

private String title;
private int inputType;
private int imeOptions;

...
TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.InputView);

int n = a.getIndexCount();
for (int i = 0; i < n; i++) {
int attr = a.getIndex(i);
switch (attr) {
case R.styleable.InputView_title:
title = a.getString(attr);
break;
//note that you are accessing standart attributes using your attrs identifier
case R.styleable.InputView_android_inputType:
inputType = a.getInt(attr, EditorInfo.TYPE_TEXT_VARIATION_NORMAL);
break;
case R.styleable.InputView_android_imeOptions:
imeOptions = a.getInt(attr, 0);
break;
default:
Log.d("TAG", "Unknown attribute for " + getClass().toString() + ": " + attr);
break;
}
}

a.recycle();
...

关于android - 使用 declare styleable 设置自定义组件输入类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9732705/

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