此示例适用于水平数字选择器小部件,但概念相同。
首先为您的自定义组件创建 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