我正在开发一个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:错误 inflating class com.github.mikephil.charting.charts.LineChart
感谢您提供的任何帮助。
答案 0 :(得分:2)
我设法确认问题出在哪里。
我的应用程序主题在我的各种其他应用程序使用的库中定义,但出于某种原因,当使用MPAndroidChartLib时从库中引用主题时,我得到此异常。如果我将主题样式从我的库复制并粘贴到我的应用程序自己的样式文件并引用它,它可以正常工作。
答案 1 :(得分:1)
老实说,我没有看到任何错误。
我在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>
答案 2 :(得分:0)
试试这个,它可能会有所帮助:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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>
该行:
xmlns:app="http://schemas.android.com/apk/res-auto"
很重要。
我希望它有所帮助。
答案 3 :(得分:0)
我努力解决这个问题,最后找到了一个有效的解决方案。
线索是图表片段设计预览的错误消息:
无法实例化以下类:
charting.charts.LineChart
例外细节
java.lang.ClassNotFoundException:
com.nineoldandroids.animation.ValueAnimator $ AnimatorUpdateListener
将com.nineoldandroids:library:2.4.+
添加到项目的build.gradle文件中修复了问题:
dependencies {
compile 'com.android.support:support-v4:19.1.0'
compile 'joda-time:joda-time:2.5'
compile 'com.nineoldandroids:library:2.4.+'
compile files('libs/MPChart.jar')
}
答案 4 :(得分:0)
在onCreate()中添加以下行为我做了诀窍
getActivity().getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);