如何在自定义 TextView 中设置构造函数以便能够从片段中传递文本?
换句话说,我很困惑如何将文本从我的片段(Fragment1)发送到自定义视图(View1):
public class View1 extends TextView {
//constructors:
public View1(Context context, AttributeSet ats, int ds) {
super(context, ats, ds);
init();
}
public View1(Context context) {
super(context);
init();
}
public View1(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
...
canvas.drawText(myString, margin1, margin2, paint); //myString is from Fragment1
....
}
我在这里问了一个类似的问题,但并没有真正得到太多帮助。示例代码将大大有助于消除我的困惑。提前致谢!