如何知道在androidPlot xml布局文件中定义哪些参数

时间:2015-04-08 19:01:32

标签: android xml android-layout androidplot

我正在通过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?

1 个答案:

答案 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是您要定义的值。