React Native:调整自定义UI组件的大小

时间:2016-10-03 16:37:26

标签: android react-native

我已经构建了一个非常简单的原生Android UI组件,并且我希望在单击来自我的react本机项目的按钮时更新其子视图的大小。更准确地说,当单击此按钮时,我会向SimpleViewManager发送命令,然后我会调用自定义视图的resizeLayout()

我可以验证resizeLayout()是否已正确调用,但布局未调整大小,直到我旋转手机。显然,更改设备的方向会触发我自定义视图的draw(),但我明确调用的invalidate()也是如此。

其他布局更改,例如更改背景颜色而不是调整其大小可以正常工作。

我的自定义组件如下所示:

public class CustomComponent extends RelativeLayout {
    public CustomComponent(Context context) {
        super(context);
        init();
    }

    public CustomComponent(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public CustomComponent(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init() {
        inflate(getContext(), R.layout.simple_layout, this);
    }

    public void resizeLayout(){
        LinearLayout childLayout = (LinearLayout) findViewById(R.id.child_layout);
        RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) childLayout.getLayoutParams();
        layoutParams.height = 50;
        layoutParams.width= 50;
        childLayout.setLayoutParams(layoutParams);

        invalidate();
    }
}

,simple_layout.xml如下所示:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/child_layout"
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:background="#ffee11"/>
</RelativeLayout>

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:13)

经过几天的搜索,我终于找到了关于本地回复的this旧报道问题的答案。

此解决方案与ReactPicker.javaReactToolbar.java中使用的解决方案相同。我必须在我的CustomComponent中放入以下代码,之后甚至不需要调用requestLayout()invalidate()。一旦我更新布局的LayoutParams,就会传播更改。

@Override
public void requestLayout() {
    super.requestLayout();

    // The spinner relies on a measure + layout pass happening after it calls requestLayout().
    // Without this, the widget never actually changes the selection and doesn't call the
    // appropriate listeners. Since we override onLayout in our ViewGroups, a layout pass never
    // happens after a call to requestLayout, so we simulate one here.
    post(measureAndLayout);
}

private final Runnable measureAndLayout = new Runnable() {
    @Override
    public void run() {
        measure(
                MeasureSpec.makeMeasureSpec(getWidth(), MeasureSpec.EXACTLY),
                MeasureSpec.makeMeasureSpec(getHeight(), MeasureSpec.EXACTLY));
        layout(getLeft(), getTop(), getRight(), getBottom());
    }
};

答案 1 :(得分:0)

尝试运行

requestLayout();

而不是无效。

这篇文章也有一些关于视图生命周期的好信息。

Usage of forceLayout(), requestLayout() and invalidate()

我还建议您将视图xml中的根元素更改为

<merge>

这样,您的CustomComponent类不会将RelativeLayout作为其直接子项,除非您的目标是什么。