我正在尝试在我的项目中使用MPAndroidChart库。这是我的布局和Activity代码。当我运行它时,它没有在我的布局中显示任何内容。我确信我错过了一些非常小的东西。但它是什么?它真的让我烦恼,为什么它没有出现
graph_activity.xml
Version
1.0.0.0
1.2.0.0
1.4.11.0
2.0.0.0
2.1.8.8
2.2.32.7
GraphTestActivity.java
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin">
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/chart"
android:visibility="visible"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
答案 0 :(得分:0)
自版本22.1.0起,不推荐使用类ActionBarActivity
。您应该使用AppCompatActivity
。
也许这可能是一个问题,为什么没有显示的东西?您确定您的问题与图书馆有关吗?
你添加了例如a TextView
到.xml文件并验证它是否正在显示?
答案 1 :(得分:0)
没关系。想出来我使用的是onCreate(Bundle savedInstanceState, PersistableBundle persistentState)
而不是onCreate(Bundle savedInstanceState)