在自定义视图上叠加EditView

时间:2012-07-04 14:53:10

标签: android android-layout

尝试使用EditView覆盖自定义视图时,我取得了不同程度的成功。

解决方案需要包含以下事实:我的自定义视图执行在绘制画布时执行的各种计算。计算,如计算中心X和Y坐标,画布尺寸等。

这些计算将用于在屏幕上定位EditText

到目前为止,我已经发现RelativeLayout是关于覆盖的方法。

目前为止最好的解决方案(不太理想)是创建自定义RelativeLayout,见下文:

public class MyCustomRL extends RelativeLayout {

    public MyCustomRL(Context context) {
        super(context);
        initView(context);
    }

    public MyCustomRL(Context context, AttributeSet attrs) {
        super(context, attrs);
        initView(context);
    }

    public MyCustomRL(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        initView(context);
    }

    protected void initView(Context context){

        LayoutInflater inflater = LayoutInflater.from(context);
        SeekBar_Speedometer v_speedometer = (SeekBar_Speedometer) inflater.inflate(R.layout.rl_custom_speedometer, this, false);

        addView(v_speedometer);

        RelativeLayout rl_comment = (RelativeLayout) inflater.inflate(R.layout.rl_edittext_comment, this, false);

        EditText edit = (EditText) rl_comment.findViewById(R.id.edittext_comment);
        edit.setText("Text altered at runtime");

        rl_comment.setX(112);
        rl_comment.setY(117);
        //Log.v("WHATEVER","X: "+v_speedometer.centerX); // = 0
        //rl_comment.setX(v_speedometer.centerX);
        //rl_comment.setY(v_speedometer.centerY);

        addView(rl_comment);
    }
}

这基本上有效,EditText位于那些静态坐标。但是我想将EditText放在v_speedometer.centerXv_speedometer.centerY坐标处,但它们为0,因为尚未绘制v_speedometer视图!!!

我该怎么做?

1 个答案:

答案 0 :(得分:0)

如果您还没有找到任何解决方案,您可以编写一个充当您的解决方案的界面 speedometer hasDrawn listener。这意味着无论何时绘制速度表,它都会向实现EditText的类发布通知,然后在CustomView或UI中再次设置它们的坐标。