如果这个问题重复,我很抱歉。 我是Android编程的新手,我正在为公共交通建立应用程序,我到目前为止做了这个:从google获取路线,解析json数据,并在地图上显示。 现在我想在列表视图中显示带有图标总线和火车的路线。
A已经看到可以通过折叠工具栏和回收视图完成,但我看到的每个教程我都会收到错误,因为这是因为Android Studio 3.0。
这是我要显示的图片
在这个列表视图中,我想添加图片,如果是电车运输而不是公共汽车的电车图标,如果它是多个电车或公交线路的组合来显示。有人可以帮助我或给我建议吗?
答案 0 :(得分:0)
Android提供CollapsingToolbarLayout,滚动它会在回收视图中折叠工具栏。使用此:
android.support.design.widget.CollapsingToolbarLayout
快乐的编码!!
答案 1 :(得分:0)
试试这段代码。它对我有用,只需将imageview放在collpasing布局中,然后根据您的选项进行更改。
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:animateLayoutChanges="true"
tools:context="com.example.intel.magitor.My_Creation_Activity"
>
<android.support.design.widget.AppBarLayout
android:background="#fff"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="400dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|snap|exitUntilCollapsed">
<!--<android.support.v7.widget.Toolbar-->
<!--android:id="@+id/toolbar"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="?attr/actionBarSize"-->
<!--app:layout_collapseMode="pin"-->
<!--app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />-->
<!-- use this v7.wdiget.toolbar if you want to display title collpasing layout-->
<!-- put here your image you want to collpase while scrolling-->
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/video_list"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
>
</android.support.v7.widget.RecyclerView>
</android.support.design.widget.CoordinatorLayout>