0
我正在實現使用Android Plot jar文件示例的圖表應用程序。它顯示應用程序在Jar文件的com.androidplot.xy.XYPlot
上運行。但是,而我在配置項目之後嘗試,它顯示了誤差,..androidplot xml文件中的錯誤
Could not find class 'com.androidplot.xy.XYPlot', referenced from method com.androidplot.xy.SimpleXYPlotActivity.onCreate
幫我想想辦法......
我的XML代碼,..
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.androidplot.xy.XYPlot
android:id="@+id/mySimpleXYPlot"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10px"
android:layout_marginLeft="10px"
android:layout_marginRight="10px"
title="A Simple XYPlot Example"/>
</LinearLayout>