我正在开发一个 Android 项目,我正在尝试从https://github.com/PhilJay/MPAndroidChart实现一个名为 MPAndroidChart 的库。
我试图在一个片段中实现它,但我不断收到错误,我不明白为什么。
下面是我的活动。
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
Fragment chartFragment = new ChartFragment();
transaction.replace(R.id.fragmentContainer, chartFragment);
transaction.commit();
}
}
下面是我的活动布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/toolbar" />
<FrameLayout android:id="@+id/fragmentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
下面是我的片段类
public class ChartFragment extends Fragment
{
private LineChart mChart;
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View v = inflater.inflate(R.layout.graph, container, false);
return v;
}
}
下面是片段的布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/lineChart1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
目前,当它试图在我的 OnCreateView 函数中膨胀视图时它会崩溃。
我得到的错误是:
java.lang.RuntimeException:无法启动活动 ComponentInfo{com.MyCompany.ChartTest/com.MyCompany.ChartTest.MainActivity}:android.view.InflateException:二进制 XML 文件第 5 行:膨胀类 com.github.mikephil.charting 时出错.charts.LineChart