我正在通过quickstart for androidPlot。 http://androidplot.com/docs/quickstart/ 在示例中,simple_xy_plot_example.xml布局文件使用
等参数定义androidPlot.titleWidget.labelPaint.textSize="@dimen/title_font_size"
androidPlot.domainLabelWidget.labelPaint.textSize="@dimen/domain_label_font_size"
androidPlot.rangeLabelWidget.labelPaint.textSize="@dimen/range_label_font_size"
androidPlot.graphWidget.marginTop="20dp"
androidPlot.graphWidget.marginLeft="15dp"
androidPlot.graphWidget.marginBottom="25dp"
但这些参数在哪里定义?我的意思是我怎么知道使用titleWidget.labelPaint.textSize来定义textSize?
答案 0 :(得分:0)
在res/values/dimens.xml
中定义这些变量
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="title_font_size">16dp</dimen>
<dimen name="domain_label_font_size">12dp</dimen>
<dimen name="range_label_font_size">12dp</dimen>
<dimen name="range_tick_label_font_size">12dp</dimen>
<dimen name="domain_tick_label_font_size">12dp</dimen>
<dimen name="legend_text_font_size">12dp</dimen>
</resources>
domain_label_font_size
是您要定义的值。