Android 时间轴效果和ListView点击效果的实现

  • 时间轴的组成
  • 第一种 – 时间线在item里面
  • 第二种 – 时间线在外面
  • 第三种 – 带点击动画的时间轴效果
  • 源码下载

一般时间轴效果都是用listview来实现,一般由圆点时间线文字三个控件组成,时间线可以放在listview里面也可以放在listview的父布局中。先来看一下下面三种效果。
第一种 第二种 第二种

1.第一种 – 时间线在item里面

这种是最简单的时间轴实现方式,所有的控件都是在item里里面,下面是布局文件

  • item_first.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:id="@+id/image_normal"
        android:layout_width="15dp"
        android:layout_height="15dp"
        android:layout_marginLeft="10dp"
        android:src="@drawable/point2" />

    <View
        android:id="@+id/line"
        android:layout_width="3dp"
        android:layout_height="100dp"
        android:layout_below="@+id/image_normal"
        android:layout_marginLeft="16dp"
        android:background="@color/colorPrimaryDark" />

    <TextView
        android:id="@+id/item_first_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_toRightOf="@id/image_normal"
        android:padding="3dp"
        android:textSize="12dp" />
</RelativeLayout>

2.第二种 – 时间线在外面

这种实现方式是线在ListView外面,这样线就不会”断“啦,其他的控件还是在item里里面,下面是布局文件

  • item_second.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_first"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <View
        android:id="@+id/line"
        android:layout_width="3dp"
        android:layout_height="match_parent"
        android:layout_marginLeft="16dp"
        android:background="@color/colorPrimaryDark" />

    <ListView
        android:layout_marginTop="50dp"
        android:id="@+id/second_listview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@null">
    </ListView>
</RelativeLayout>

3.第三种 – 带点击动画的时间轴效果

第一和第二种时间线都是静态的,有时候我们想实现ListView选中后的效果,下面再第二种的基础上实现选中动画和改变point的图片

  • 在adapter中设置一个标记,来记录当前选中的position的位置public int point; //用来标记点的位置
  • 在adapter的getView( )中设置选中的item
if (position == point){  //设置 选中的条目
            viewHold.image.setImageResource(R.drawable.point1);
            //初始化动画
            Animation scaleAnimation = new ScaleAnimation(1.0f, 1.5f,1.0f,1.5f,0,0.5f,Animation.ZORDER_BOTTOM,0.5f);
            //设置动画时间
            scaleAnimation.setDuration(500);
            scaleAnimation.setFillAfter(true);
            //给控件设置动画
            viewHold.thirdText.startAnimation(scaleAnimation);
        }
  • 在item 的点击事件中
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        //改变point 选中的point值
        thirdAdapter.point = position;
        //刷新listview
        thirdAdapter.notifyDataSetChanged();
        thirdListView.setAdapter(thirdAdapter);
    }

这中法也可以用来点击item时来动态改变当前布局的内容,可以扩展很多用法,不过性能上需要优化。

源码点击下载

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值