Android的时间线开发

时间:2015-05-01 12:01:21

标签: java android xml

我想创建一个如下所示的时间轴(有没有任何库可以帮助enter image description here

谁可以给我一个关于如何做或者教程的想法

谢谢

1 个答案:

答案 0 :(得分:-2)

It's a simple ListView or RecyclerView with cells like those : 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="100dp">

    <RelativeLayout
        android:layout_width="100dp"
        android:layout_height="match_parent">

        <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:layout_above="@+id/date"
            android:layout_centerHorizontal="true"
            android:background="#C00"
            />

        <TextView
            android:id="@+id/date"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="#C00"
            android:padding="10dp"
            tools:text="22"
            android:textColor="@android:color/white"/>

        <View
            android:layout_width="1dp"
            android:layout_centerHorizontal="true"
            android:layout_height="match_parent"
            android:layout_below="@+id/date"
            android:background="#C00"
            />

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:textColor="#C00"
            tools:text="This saturday"
            android:textStyle="bold"/>

    </RelativeLayout>

</LinearLayout>