24

我有一组我想始终一起使用的视图。这方面的一个例子可能是这样的:

<LinearLayout>
    <TextView />
    <EditView />
</LinearLayout>

文本视图是提示,编辑视图是答案。我想给这个组合起一个名字,并且能够使用这个名字把它弹出到 xml 中。我希望它是一个自定义视图,这样我就可以把它很好地放在一个类中,并为它创建各种实用函数。有什么办法可以做到吗?我知道我可以继承 LinearLayout 并在 java 代码中动态创建子级,但这使我无法通过 xml 轻松进行更改。有更好的路线吗?

是的,我也有我想做的地方,而不仅仅是提示。

4

3 回答 3

55

此示例适用于水平数字选择器小部件,但概念相同。

首先为您的自定义组件创建 XML 布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

   <Button
       android:id="@+id/btn_minus"
       android:layout_width="50dp"
       android:layout_height="wrap_content"
       android:text="-" />

   <EditText
       android:id="@+id/edit_text"
       android:layout_width="75dp"
       android:layout_height="wrap_content"
       android:inputType="number"
       android:gravity="center"
       android:focusable="false"
       android:text="0" />

   <Button
       android:id="@+id/btn_plus"
       android:layout_width="50dp"
       android:layout_height="wrap_content"
       android:text="+" />
</LinearLayout>

然后创建java类

public class HorizontalNumberPicker extends LinearLayout {
    public HorizontalNumberPicker(Context context, AttributeSet attrs) {
         super(context, attrs);
         LayoutInflater inflater = LayoutInflater.from(context);
         inflater.inflate(R.layout.horizontal_number_picker, this);
     }
 }

向该 java 类添加您需要的任何逻辑,然后您可以在 XML 布局中包含自定义组件,如下所示:

<com.example.HorizontalNumberPicker
     android:id ="@+id/horizontal_number_picker"
     android:layout_width ="wrap_content"
     android:layout_height ="wrap_content" />


查看此链接了解更多信息:http: //developer.android.com/guide/topics/ui/custom-components.html#compound

于 2012-10-19T18:42:29.967 回答
4

为此目的使用复合控件。有很多关于它的示例和教程。祝你好运 )

于 2012-10-19T16:26:49.893 回答
1

将该 XML 放入布局 XML 文件中,并在需要时使用充气器充气视图。

LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflater.inflate(R.layout.some_id, parent, false);

获得视图后,您可以编写一个实用程序类来接受该视图并对其执行操作。使用ViewHolder 模式findViewById()使用或存储对其他视图的引用来检索文本和编辑视图

于 2012-10-19T16:22:03.593 回答