美文网首页
实现时间轴

实现时间轴

作者: 自然之秋 | 来源:发表于2017-07-04 14:10 被阅读6次
    Screenshot_2017-07-04-14-02-46-2120863316.png

    <FrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

            <ImageView
                android:layout_width="match_parent"
                android:layout_marginLeft="2dp"
                android:layout_height="2dp"
                android:layout_gravity="center"
                android:src="@color/grey">
    
            </ImageView>
            <TextView
                android:id="@+id/soon_item_time_top"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="2dp"
                android:text="123456789"
                android:background="@drawable/bg_rectangle"/>
    
        </FrameLayout>
    

    @drawable/bg_rectangle
    <?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#d2d5d7" />
    <corners android:topLeftRadius="5dp"
    android:topRightRadius="5dp"
    android:bottomRightRadius="5dp"
    android:bottomLeftRadius="5dp"/>
    <stroke android:width="1dp" android:color="#939292" />
    </shape>

    相关文章

      网友评论

          本文标题:实现时间轴

          本文链接:https://www.haomeiwen.com/subject/rrxxhxtx.html