工具之类的行为:自定义视图中的文字?

时间:2017-03-13 17:59:19

标签: android android-layout android-custom-view android-xml

我有一个自定义视图,在布局中有两个文本视图。我们拨打一个key和另一个value

你知道TextView有这个吗?

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:text="Preview text shown in the layout editor" />

我想用我的自定义视图做类似的事情,例如:

<com.package.whatever.MyCustomView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:key_preview="Preview text for the key"
    app:value_preview="Preview text for the value" />

MyCustomView的构造函数是这样的:

public MyCustomView(Context context, AttributeSet attrs) {
    super(context, attrs);

    ((LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE))
            .inflate(R.layout.my_custom_view, this, true);

    key = (TextView) findViewById(R.id.key);
    value = (TextView) findViewById(R.id.value);

    TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.MyCustomView, 0, 0);
    try {
        if (isInEditMode()) {
            key.setText(a.getText(R.styleable.MyCustomView_key_preview));
            value.setText(a.getText(R.styleable.MyCustomView_value_preview));
        }
        key.setText(a.getText(R.styleable.MyCustomView_key));
        value.setText(a.getText(R.styleable.MyCustomView_value));
    } finally {
        a.recycle();
    }
}

attrs.xml

<declare-styleable name="MyCustomView">
    <attr name="key" format="string" />
    <attr name="key_preview" format="string" />
    <attr name="value" format="string" />
    <attr name="value_preview" format="string" />
</declare-styleable>

问题是我在布局编辑器中查看包含isInEditMode()的布局时false正在返回MyCustomView。如果我添加app:key="yay"它可以正常工作,但对于app:key_preview="nay :("没有任何显示。

是什么给出了?

1 个答案:

答案 0 :(得分:3)

我是个dingus并且对你们所有人撒谎。 isInEditMode()没有返回假。

咳嗽咳嗽

    if (isInEditMode()) {
        key.setText(a.getText(R.styleable.MyCustomView_key_preview));
        value.setText(a.getText(R.styleable.MyCustomView_value_preview));
    } else {
        key.setText(a.getText(R.styleable.MyCustomView_key));
        value.setText(a.getText(R.styleable.MyCustomView_value));
    }

原来我最初确定的是将密钥设置为app:key_preview的值,但随后随后null覆盖a.getText(R.styleable.MyCustomView_key)正在返回。

voopz。