我创建了一个自定义视图以在屏幕上绘制一条线。此视图包含在片段的xml布局中,并在片段的onCreateView
方法中检索如下:
MyCustomView mMyCustomView;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate view
View v = inflater.inflate(R.layout.fragment, container, false);
mMyCustomView = (MyCustomView) v.findViewById(R.id.my_custom_view);
...
}
当我将mMyCustomView
变量传递给片段的onCreateView
方法中的自定义侦听器并在侦听器类中调用类似mMyCustomView.drawLine
的内容时,一切正常。
然而,当我在片段的mMyCustomView.drawLine
方法中调用onResume()
时,没有任何反应,尽管它是相同的变量和方法。
我能想到的唯一原因是,当用户与片段交互时,监听器会调用该方法,就生命周期而言,这甚至晚于调用onResume()
。但是,在片段中,我不能在onResume()
AFAIK之后调用该方法。
编辑1 :
这是我的自定义视图:
public class ConnectionLinesView extends View {
// Class variables
Paint mPaint = new Paint(); // Paint to apply to lines
ArrayList<float[]> mLines = new ArrayList<float[]>(); // Array to store the lines
public ConnectionLinesView(Context context) {
super(context);
mPaint.setColor(Color.BLACK);
mPaint.setStrokeWidth(2);
}
public ConnectionLinesView(Context context, AttributeSet attrs) {
super(context, attrs);
mPaint.setColor(Color.BLACK);
mPaint.setStrokeWidth(2);
}
public ConnectionLinesView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mPaint.setColor(Color.BLACK);
mPaint.setStrokeWidth(2);
}
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// If lines were already added, draw them
if(!mLines.isEmpty()){
for(float[] line : mLines){
canvas.drawLine(line[0], line[1], line[2], line[3], mPaint);
}
}
}
// Method to add a line to the view
public void addLine(View v1, View v2) {
float[] line = new float[4];
line[0] = v1.getX() + v1.getWidth()/2;
line[1] = v1.getY() + v1.getHeight()/2;
line[2] = v2.getX() + v2.getWidth()/2;
line[3] = v2.getY() + v2.getHeight()/2;
mLines.add(line);
this.invalidate();
}
public void removeLines() {
mLines.clear();
this.invalidate();
}
}
当我在onResume()
中调用addLine(...)时,即使已达到onDraw()
方法中for循环的内部,也不会绘制该行。当我稍后在侦听器类中添加另一行(响应某些用户交互)时,两行都在画布上绘制。不知何故,canvas.drawLine()
在视图的父片段的onResume()
中不起作用。
编辑2 :
我添加了一个处理程序,它在将片段添加到父活动的布局后重复调用自定义视图的invalidate
方法。这条线仍然没有画出来!
答案 0 :(得分:3)
最后,我通过创建一个处理程序解决了这个问题,该处理程序在添加片段50毫秒后调用addLine
方法。一个非常脏的解决方案,但它的工作原理......