gpt4 book ai didi

android - 在 fragment 中使用 MPChartLibrary

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:04:00 25 4
gpt4 key购买 nike

我正在开发一个 Android 项目,我正在尝试实现一个来自 https://github.com/PhilJay/MPAndroidChart 的名为 MPAndroidChart 的库。 .

我试图在一个 fragment 中实现它,但我一直收到错误,我不明白为什么。

下面是我的 Activity 。

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();
}
}

下面是我的 Activity 布局

<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>

下面是我的 fragment 类

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;
}
}

下面是 fragment 的布局

<?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 函数中尝试膨胀 View 时崩溃。

我得到的错误是:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.MyCompany.ChartTest/com.MyCompany.ChartTest.MainActivity}: android.view.InflateException: Binary XML file line #5: Error inflating class com.github.mikephil.charting.charts.LineChart

最佳答案

老实说,我看不出有什么问题。

我在 example project 中使用的 Fragments 之间看到的唯一区别是他们使用 wrap_content 而不是 match_parent 作为图表的宽度和高度。

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<com.github.mikephil.charting.charts.LineChart
android:id="@+id/lineChart1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</FrameLayout>

关于android - 在 fragment 中使用 MPChartLibrary,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27471751/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com