gpt4 book ai didi

android - MPAndroidChart折线图问题

转载 作者:行者123 更新时间:2023-11-29 01:16:45 25 4
gpt4 key购买 nike

我正在尝试显示多个折线图,但滚动对于应显示图表的页面不起作用。我使用协调器布局内的 viewpager。

我也想实现以下目标:

  • 退出曲线的线
  • 退出图例中的颜色标签

我知道 Coordinator Layout 和 Viewpager 有时需要一些棘手的解决方法,但直到这一刻我才找到解决方案。我需要添加更多图表...

resume charts

charts stop scrolling

主要的xml:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="112dp"
android:background="@color/colorPrimary"
android:elevation="@dimen/elevation_toolbar"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:contentScrim="@color/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:layout_marginLeft="@dimen/list_toolbar_side_margin"
android:layout_marginRight="@dimen/list_toolbar_side_margin"
app:layout_collapseMode="pin" />

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
style="@style/AppTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:tabGravity="fill"
app:tabMode="fixed"
app:tabTextAppearance="@style/AppTabTextAppearance"/>

</android.support.design.widget.CollapsingToolbarLayout>

</android.support.design.widget.AppBarLayout>

<ProgressBar
android:id="@+id/progress_bar_garden"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone"/>

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>

和图表 fragment xml:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<ProgressBar
android:id="@+id/progress_bar_charts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:visibility="gone" />

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.github.mikephil.charting.charts.LineChart
android:id="@+id/temp_chart"
android:layout_width="@dimen/show_plant_chart_width"
android:layout_height="@dimen/show_plant_chart_height"
android:layout_marginStart="@dimen/show_plant_chart_margin_start" />

<com.github.mikephil.charting.charts.LineChart
android:id="@+id/humidity_chart"
android:layout_width="@dimen/show_plant_chart_width"
android:layout_height="@dimen/show_plant_chart_height"
android:layout_marginStart="@dimen/show_plant_chart_margin_start"
android:layout_marginTop="@dimen/show_plant_chart_margin_top" />

</LinearLayout>

</RelativeLayout>

最佳答案

我使用 recycleView 解决了这个问题。看来 MPAndroidChart Line Chart 和 ScrollView 有问题。我不明白为什么。

关于android - MPAndroidChart折线图问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39055037/

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