私はCompositeComponent(EditText + ImageButton)を持っています ボタンをクリックすると、編集テキストの内容が消去されます。 正常に動作しています。私の問題は、私のコンポーネントに属性を設定することです。私はdeclare-styleableを使用してコンポーネントに属性を設定しています。カスタムコンポーネントの入力タイプを設定するためにdeclareを使用します
minLines、maxLines、textColorの設定に成功しました。
xmlを使用してinputtypeをコンポーネントに設定する方法を教えてください。
main_layout.xmlで私attributes.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>
そして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--------> >
私は私の属性でENUMを使用傾けます。 xml。 cet:InputType
にandroid:inputType="numberSigned"
を紹介する方法はありますか?
EDIT:これは私が私の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);
ある
あなたはEDITTEXTにinputTypeのプロパティを割り当てることで問題はありません見ることができます。
を得るのですか?このリンクを使用してより多くのフラグを追加する – Mayank
私は何のエラーも起こりませんでした。そのうまく動作します。私はどのように入力の種類を割り当てるか分からない?生の整数値を与える代わりに、アンドロイドでenum(android:inputtype)を使いたいと思います。 –