2

我准备创建一个可重用的界面,即一年选择器(仅一年)。本质上,这个组件应该有几个按钮和一个文本视图,滑动功能也很棒。

正如我所说,我努力使其可重用,但我不确定 Android 是否提供任何实现它的方法。我已经开始阅读“自定义组件”文章——这是我真正需要的吗?或者我应该做一个像常规组合类这样的东西,它有对视图对象等的引用?

谢谢。

更新:这很简单——如果有人遇到同样的情况,这是一个例子

YearPicker.class

public class YearPicker extends LinearLayout {
    protected int _minValue = 1980;
    protected int _currentValue;
    protected int _maxValue;

    protected int _decrementValueView = R.id.decrement_value;
    protected int _previousValueView = R.id.previous_value;
    protected int _currentValueView = R.id.current_value;
    protected int _nextValueView = R.id.next_value;

    public YearPicker(Context context) {
        super(context);
    }

    public YearPicker(Context context, AttributeSet attrs) {
        super(context, attrs);
        Calendar calendar = Calendar.getInstance();
        _maxValue = calendar.get(Calendar.YEAR);
        _currentValue = _maxValue - ((_maxValue - _minValue) / 2);

    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        super.onLayout(changed, l, t, r, b);

        TextView curView = (TextView) findViewById(_currentValueView);
        curView.setText(Integer.toString(_currentValue));
        findViewById(_decrementValueView).setOnClickListener(
                _onDecrementValueClick);
    }

    protected OnClickListener _onDecrementValueClick = new OnClickListener() {
        @Override
        public void onClick(View v) {
            _currentValue--;
            TextView curView = (TextView) findViewById(_currentValueView);
            curView.setText(Integer.toString(_currentValue));
        }
    };
}

主要的.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />
    <include 
        layout="@layout/year_picker"/>

</LinearLayout>

year_picker.xml

<view xmlns:android="http://schemas.android.com/apk/res/android"
    class="localhost.yearpicker.YearPicker"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/decrement_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

    <TextView
        android:id="@+id/previous_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Small Text"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <TextView
        android:id="@+id/current_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Medium Text"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    <TextView
        android:id="@+id/next_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Small Text"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <Button
        android:id="@+id/increment_value"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" />

</view>
4

2 回答 2

2

在您的情况下,我将扩展一个更可取的 ViewGroup,将 XML(用于样式化和定位视图)膨胀到其中,获取对这些视图的访问,添加所有相关的 set/get 方法,仅此而已。如果相关,您还可以为组件定义属性,以便在 XML 中使用它时调整其自定义功能。

于 2012-05-14T19:50:22.920 回答
1

您可能根本不需要自定义视图。我更喜欢保留单独的 XML 布局,我可以在需要时扩展它们,然后使用自定义 OnClickListeners(或 OnTouchListeners)控制它们

如果您需要覆盖基本视图的方法(例如 onLayout 或 draw() 方法),我只会求助于自定义视图

于 2012-05-14T19:55:01.983 回答