我创建了一个名为的自定义视图Graphview
。这是GraphView类的结构。
public class GraphView extends View {
public GraphView(Context context, float[] values, String title, String[] horlabels, String[] verlabels, boolean type) {
super(context);
........
}
..................
.................
}
我使用将该视图添加到了表格行中addview()
。一切正常。现在,我想为设置高度和宽度GraphView
。怎么做?