在Android中创建复合控件的问题

发布于 2024-11-07 00:39:12 字数 2186 浏览 0 评论 0原文

我正在学习在 android 中创建复合控件。 首先,我尝试使用附加按钮编辑文本来清除它。

问题是即使我可以在图形视图中看到复合控件 main.xml,有一条错误消息:“自定义视图 ClearableEditText 未使用 2 或 3 参数视图构造函数;XML 属性将不起作用” 仅在 xml 图形视图中出现错误时,这在项目资源管理器中不可见 我能够编译并运行,但强制关闭。

XML:复合控制clearable_edit_text.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
    <EditText android:id="@+id/editText"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
    <Button android:id="@+id/clearButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CLEAR"
    />
</LinearLayout>

CLASS

public class ClearableEditText extends LinearLayout 
{
    EditText et;
    Button btn;

    public ClearableEditText(Context context)
    {
        super(context);
        LayoutInflater li=(LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        li.inflate(R.layout.clearable_edit_text,this,true);

        et=(EditText)findViewById(R.id.editText);
        btn=(Button)findViewById(R.id.clearButton);

        hookupButton();
    }

    private void hookupButton()
    {
        btn.setOnClickListener(new Button.OnClickListener()
        {
            public void onClick(View v)
            {
                et.setText("");
            }
        });
    }
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
>
    <com.commsware.android.merge.ClearableEditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
    <com.commsware.android.merge.ClearableEditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
</LinearLayout>

I am learning to create a compound control in android.
For starters i tried an edit text with an attached button to clear it.

The problem is even though i can see the compound control in the graphical view of the
main.xml, there is an error message : "Custom view ClearableEditText is not using the 2- or 3-argument View constructors; XML attributes will not work"
This is not visible in project explorer under errors only in the xml graphical view
i am able to compile and run but get a force close.

XML : COMPOUND CONTROL clearable_edit_text.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
>
    <EditText android:id="@+id/editText"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
    <Button android:id="@+id/clearButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="CLEAR"
    />
</LinearLayout>

CLASS

public class ClearableEditText extends LinearLayout 
{
    EditText et;
    Button btn;

    public ClearableEditText(Context context)
    {
        super(context);
        LayoutInflater li=(LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        li.inflate(R.layout.clearable_edit_text,this,true);

        et=(EditText)findViewById(R.id.editText);
        btn=(Button)findViewById(R.id.clearButton);

        hookupButton();
    }

    private void hookupButton()
    {
        btn.setOnClickListener(new Button.OnClickListener()
        {
            public void onClick(View v)
            {
                et.setText("");
            }
        });
    }
}

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
>
    <com.commsware.android.merge.ClearableEditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
    <com.commsware.android.merge.ClearableEditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
    />
</LinearLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暖阳 2024-11-14 00:39:12

您的类扩展了LinearLayout,但您从未向其中添加任何视图。您需要调用 addView(...) 并将膨胀的视图作为参数传递。

另外,要在 XML 中定义视图,您需要重写 LinearLayout 的 2 和 3 个参数构造函数。将其添加到您的代码中:

public ClearableEditText(Context context, AttributeSet attrs) {

    super( context, attrs );
}

public ClearableEditText(Context context, AttributeSet attrs, int defStyle) {

    super( context, attrs, defStyle );
}

要让所有 3 个构造函数使用相同的初始化代码,请将代码从单参数构造函数移动到 3 个参数构造函数,然后在其他 2 个构造函数中调用 this(context, null, 0)分别是this(context, attrs, 0)

Your class extends LinearLayout but you never add any views to it. You need to call addView(...) and pass your inflated view as the parameter.

Also, to define your view in XML you need to override the 2 and 3 argument constructors for a LinearLayout. Add this to your code:

public ClearableEditText(Context context, AttributeSet attrs) {

    super( context, attrs );
}

public ClearableEditText(Context context, AttributeSet attrs, int defStyle) {

    super( context, attrs, defStyle );
}

To get all 3 constructors to use the same initialization code, move your code from the single argument constructor to the 3 argument constructor, then in the other 2 constructors call this(context, null, 0) and this(context, attrs, 0) respectively.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文