如何在Android中为统计信息制作横条?

时间:2016-05-14 20:54:28

标签: android android-layout listview statistics android-recyclerview

所以,尽管有很多应用程序都有这个功能,但我已经在互联网上进行了广泛的搜索,我找不到解决问题的方法。我想以可视方式显示统计数据,如下面的示例所示。

Flashscore statistics

All Goals statistics

有没有办法实现这一目标?我不介意使用外部库。提前谢谢。

1 个答案:

答案 0 :(得分:0)

你可以使用它(只旋转其中一个):

            <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <SeekBar
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1" />

            <SeekBar
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"/>

        </LinearLayout>