Androidplot - 范围刻度标签大小和原始范围刻度标签大小的不同文本/字体大小

时间:2015-12-14 14:26:23

标签: android plot androidplot

我的情节有以下xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.ukhouser.rapidsightreductionform.PositionLines">

    <include layout="@layout/app_bar" />

    <LinearLayout
        style="@style/activity_layout"
        xmlns:ap="http://schemas.android.com/apk/res-auto"
        android:layout_below="@+id/app_bar">

        <com.androidplot.xy.XYPlot
            android:id="@+id/myPositionLines"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            ap.domainLabel="Domain"
            ap.rangeLabel="Lat"
            ap.title="Position Line Plot"
            ap:gridBackgroundColor="#56e713"
            ap:labelTextSize="@dimen/title_font_size"
            ap:rangeLabelTextSize="@dimen/range_label_font_size"
            ap:domainLabelTextSize="@dimen/domain_label_font_size"
            ap:graphMarginTop="15dp"
            ap:graphMarginBottom="50dp"
            ap:graphMarginLeft="25dp"
            ap:graphMarginRight="15dp"
            ap:graphDomainLineColor="#000000"
            ap:graphDomainLineThickness="1dp"
            ap:graphRangeLineColor="#000000"
            ap:graphRangeLineThickness="1dp"
            ap:rangeTickLabelTextSize="@dimen/range_tick_label_font_size"
            ap:rangeOriginTickLabelTextSize="@dimen/range_tick_label_font_size"
            ap:domainTickLabelTextSize="@dimen/domain_tick_label_font_size"
            ap:domainOriginTickLabelTextSize="@dimen/domain_tick_label_font_size"
            ap:legendTextSize="@dimen/legend_text_font_size"
            ap:legendIconHeight="15dp"
            ap:legendIconWidth="15dp"
            ap:legendHeight="30dp"
            ap:legendTextColor="#000000"
            ap:legendIconHeightSizeLayoutType="absolute"
            ap:legendIconWidthSizeLayoutType="absolute"
            ap:legendHeightSizeLayoutType="absolute"
            ap:legendWidthSizeLayoutType="absolute"
            ap:legendWidth="230dp" />

        <LinearLayout
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_gravity="bottom"
            android:orientation="horizontal">
            <CheckBox
                android:id="@+id/s1CheckBox"
                android:text="Series 1"
                android:checked="true"
                android:layout_height="wrap_content"
                android:layout_width="fill_parent"/>
            <CheckBox
                android:id="@+id/s2CheckBox"
                android:text="Series 2"
                android:checked="true"
                android:layout_height="wrap_content"
                android:layout_width="fill_parent"/>
            <CheckBox
                android:id="@+id/s3CheckBox"
                android:text="Series 3"
                android:checked="true"
                android:layout_height="wrap_content"
                android:layout_width="fill_parent"/>
        </LinearLayout>


    </LinearLayout>


</RelativeLayout>

我已明确将以下内容标记为相同尺寸:

rangeTickLabelTextSize = “@扪/ range_tick_label_font_size” AP:rangeOriginTickLabelTextSize = “@扪/ range_tick_label_font_size”

然而,当我制作我的绘图时,范围轴文本大小的原点更大。请帮忙?我在java中没有进行额外的操作。我会添加一张图片,但我没有足够的声誉。

由于

1 个答案:

答案 0 :(得分:0)

这是由于一个错误,已在0.9.5及更高版本中修复。