Shinobi Android Library多个图表

时间:2015-12-16 09:53:30

标签: android android-layout android-fragments shinobi

我正在使用Shinobi Android库创建不同的图形,如饼图,条形图等。 我有一个childFragment(动态创建),在那个片段中我想在其他下面放置多个图形。为此,我在ScrollView中创建了一个垂直方向的LinearLayout。我的计划是逐个添加图形或图表作为LinearLayout的子项。这个计划不起作用,无论我添加多少个孩子,只有一个孩子可见。这只发生在Shinobi图表视图中,如果我添加按钮或任何其他视图,我可以在滚动时看到所有孩子。

问题点:如何在Linearlayout中将多个shinobi图一个插入另一个?

片段布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">

        <LinearLayout
            android:id="@+id/fragmentLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <android.support.v7.widget.CardView
                android:id="@+id/messageCard"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:padding="16dp">

                    <TextView
                        android:id="@+id/messageLabel"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentTop="true"
                        android:text="Message:"
                        android:textColor="@color/accent_material_light"
                        android:textSize="18sp" />

                    <TextView
                        android:id="@+id/messageTextView"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/messageLabel" />
                </RelativeLayout>
            </android.support.v7.widget.CardView>
        </LinearLayout>
    </ScrollView>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我为ShinobiControl工作并在ScrollView中放置多个图表是一个相当常见的用例。我们在过去已经看到了一些成功的实现,所以我怀疑这可能只是你的布局问题。 我感谢您发布了一个布局,您可以在其中演示可以将多个非shinobi视图添加到ScrollView中。你能否发布包含ShinobiCharts的布局文件?这应该有助于我们发现原因,如有必要,我们可以在ShinobiHQ尝试。 谢谢, 启。