我正在尝试使用DecoView lib创建一个用于显示饼图的Android应用程序,但我无法显示饼图。
A.XML
echo 'Pagination'.paginate_links( array(
'base' => add_query_arg( 'cpage', '%#%' ),
'format' => '',
'prev_text' => __('«'),
'next_text' => __('»'),
'total' => ceil($total / $items_per_page),
'current' => $page
));
return $data;
}
这是我要调用图表类的活动。
a.java
<com.hookedonplay.decoviewlib.DecoView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/dynamicArcView"
android:layout_margin="8dp">
</com.hookedonplay.decoviewlib.DecoView>
<ListView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:id="@+id/listView2"
android:layout_alignParentStart="true"
android:layout_marginTop="10dp"
android:layout_alignParentBottom="true" />
我使用了DecoView项目中的SamplePeopleFragment.java对象,但它无法正常工作。
我根据上面链接中的示例创建了我的应用程序。