国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android之RecyclerView實現時光軸效果示例

2019-12-12 03:43:42
字體:
來源:轉載
供稿:網友

做項目的過程中有個需求需要時光軸,于是網上找了部分資料 ,寫了個案例,現在分享給大家。

如圖:

       

activity_main.xml

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:tools="http://schemas.android.com/tools"  android:layout_width="match_parent"  android:layout_height="match_parent"  tools:context=".MainActivity">  <android.support.v7.widget.RecyclerView    android:id="@+id/recyclerView"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:overScrollMode="never" /></RelativeLayout>

item.xml

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"  xmlns:app="http://schemas.android.com/apk/res-auto"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:paddingLeft="8dp"  android:paddingRight="8dp"  android:paddingTop="8dp">  <TextView    android:id="@+id/item_timeline_time"    android:layout_height="wrap_content"    android:layout_width="wrap_content"    android:layout_marginRight="8dp"    android:layout_marginTop="18dp"    android:gravity="center_horizontal"    android:padding="4dp"    android:textColor="@color/colorAccent"    android:textSize="16sp"    android:text="2015-06-08/n09:56"    />  <RelativeLayout    android:id="@+id/item_timeline_icon_layout"    android:layout_width="48dp"    android:layout_height="48dp"    android:layout_marginBottom="4dp"    android:layout_marginRight="8dp"    android:layout_toRightOf="@id/item_timeline_time">    <com.timelinedemo.CircleImageView      android:id="@+id/item_timeline_icon_bg"      android:layout_width="match_parent"      android:layout_height="match_parent"      android:src="@android:color/transparent"      app:civ_border_width="4dp" />    <ImageView      android:id="@+id/item_timeline_icon"      android:layout_width="24dp"      android:layout_height="24dp"      android:layout_centerInParent="true"      android:scaleType="fitCenter" />  </RelativeLayout>  <TextView    android:id="@+id/item_timeline_content"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_marginTop="18dp"    android:layout_toRightOf="@id/item_timeline_icon_layout"    android:text="今日收入"    android:textColor="@color/colorPrimary"    android:textSize="15sp" />  <TextView    android:id="@+id/item_timeline_money"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:layout_below="@id/item_timeline_content"    android:layout_marginTop="8dp"    android:layout_toRightOf="@id/item_timeline_icon_layout"    android:text="$ 100"    android:textColor="@color/colorPrimary"    android:textSize="22sp" />  <View    android:id="@+id/item_timeline_view"    android:layout_width="2dp"    android:layout_height="60dp"    android:layout_alignLeft="@id/item_timeline_icon_layout"    android:layout_below="@id/item_timeline_icon_layout"    android:layout_marginLeft="23dp"    android:background="@color/colorAccent" /></RelativeLayout>

Activity.Java

public class MainActivity extends AppCompatActivity {  private RecyclerView recyclerView;  @Override  protected void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.activity_main);    initLayout();  }  private void initLayout(){    recyclerView= (RecyclerView) findViewById(R.id.recyclerView);    recyclerView.setLayoutManager(new LinearLayoutManager(this));    recyclerView.setHasFixedSize(true);    recyclerView.setItemAnimator(new DefaultItemAnimator());    initData();  }  private void initData(){    List<TimeInfo > list=new ArrayList<>();    for(int i=0;i<15;i++){      list.add(new TimeInfo());    }    TimelineAdapter mAdapter = new TimelineAdapter(this, list);    recyclerView.setAdapter(mAdapter);  }}

添加依賴庫:

compile 'com.android.support:recyclerview-v7:23.0.0'

由于代碼太多,完整代碼未給出,源碼直接下載即可

源碼點擊下載:TimeLineDemo_jb51.rar

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 永康市| 玉树县| 邵武市| 枞阳县| 宝坻区| 金门县| 白城市| 田阳县| 崇礼县| 来安县| 靖宇县| 兰西县| 泉州市| 汝南县| 密山市| 固原市| 西平县| 平舆县| 惠安县| 浠水县| 德钦县| 榆林市| 江都市| 六盘水市| 罗田县| 石景山区| 綦江县| 施甸县| 海口市| 华容县| 沅江市| 隆化县| 应城市| 资溪县| 玉树县| 大庆市| 讷河市| 宿松县| 芷江| SHOW| 西乡县|