Android控件之使用ListView實(shí)現(xiàn)時(shí)間軸效果
實(shí)現(xiàn)思路:
該View是通過ListView實(shí)現(xiàn)的,通過實(shí)體兩個(gè)字段內(nèi)容content和時(shí)間time來展示每個(gè)ListItem
時(shí)間軸是使用上面一條線(20dp)和中間一個(gè)圓(15dp)和下面一條線(40dp)組裝成的
在ListView中,設(shè)置其分割線為空,并且沒有點(diǎn)擊效果
效果圖:

步驟一:使用xml畫出一個(gè)灰色的圓點(diǎn)(time_cycle.xml)
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval"> <solid android:color="#CBCBCB" /> <size android:width="15dp" android:height="15dp" /> </shape>
步驟二:javabean的編寫
public class KuaiDi {
private String content;
private String time;
public KuaiDi(String time, String content) {
this.content = content;
this.time = time;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
}
步驟三:編寫子布局(time_item.xml)
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="75dp" android:orientation="horizontal"> <!--線條部分--> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center_horizontal" android:orientation="vertical" android:paddingLeft="30dp"> <View android:layout_width="3dp" android:layout_height="20dp" android:background="#CBCBCB" /> <ImageView android:layout_width="15dp" android:layout_height="15dp" android:background="@drawable/time_cycle" /> <View android:layout_width="3dp" android:layout_height="40dp" android:background="#CBCBCB" /> </LinearLayout> <!--文字部分--> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingLeft="30dp" android:paddingRight="30dp" android:paddingTop="20dp"> <TextView android:id="@+id/tv_content" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="【廣東省中國(guó)郵政集團(tuán)公司深圳市龍華函件中心】已收寄" android:textColor="#ABABAB" /> <TextView android:id="@+id/tv_time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/tv_content" android:text="2016-05-03 00:22:36" android:textColor="#ABABAB" /> </LinearLayout> </LinearLayout>
其效果如圖:

步驟四:編寫父布局(activity_main.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"> <ListView android:id="@+id/lv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:divider="@null" android:listSelector="@android:color/transparent" /> </RelativeLayout>
步驟五:編寫子布局的適配器(KuaiDiAdapter.java)
public class KuaiDiAdapter extends BaseAdapter {
//印章數(shù)據(jù)
private List<KuaiDi> list;
private LayoutInflater mInflater;
public KuaiDiAdapter(Context context, List<KuaiDi> list) {
this.list = list;
mInflater = LayoutInflater.from(context);
}
@Override
public int getCount() {
return list.size();
}
@Override
public Object getItem(int position) {
return list.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = mInflater.inflate(R.layout.time_item, null);
}
ViewHolder holder = getViewHolder(convertView);
KuaiDi kd = list.get(position);
holder.tv_content.setText(kd.getContent());
holder.tv_time.setText(kd.getTime());
return convertView;
}
/**
* 獲得控件管理對(duì)象
*
* @param view
* @return
*/
private ViewHolder getViewHolder(View view) {
ViewHolder holder = (ViewHolder) view.getTag();
if (holder == null) {
holder = new ViewHolder(view);
view.setTag(holder);
}
return holder;
}
/**
* 控件管理類
*/
private class ViewHolder {
private TextView tv_content, tv_time;
ViewHolder(View view) {
tv_content = (TextView) view.findViewById(R.id.tv_content);
tv_time = (TextView) view.findViewById(R.id.tv_time);
}
}
}
步驟六:在父布局中設(shè)置適配器
public class MainActivity extends AppCompatActivity {
private ListView lv;
private KuaiDiAdapter adapter;
private List<KuaiDi> list;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lv = (ListView) findViewById(R.id.lv);
list =new ArrayList<>();
list.add(new KuaiDi("2016-09-18 08:33:50","您的訂單開始處理"));
list.add(new KuaiDi("2016-09-18 08:40:23","您的訂單待配貨"));
list.add(new KuaiDi("2016-09-18 08:51:33","您的包裹已出庫"));
list.add(new KuaiDi("2016-09-18 21:12:53","【深圳市龍華函件中心】已收寄"));
list.add(new KuaiDi("2016-09-18 17:44:20","到達(dá)【深圳】"));
list.add(new KuaiDi("2016-09-18 21:26:51","離開【深圳市龍華函件中心】,下一站【深圳市】"));
list.add(new KuaiDi("2016-09-18 23:18:21","到達(dá)【深圳市處理中心】"));
list.add(new KuaiDi("2016-09-19 01:14:30","離開【深圳市處理中心】,下一站【廣州市】"));
list.add(new KuaiDi("2016-09-19 04:42:11","到達(dá)【廣東省廣州郵件處理中心】"));
adapter = new KuaiDiAdapter(this,list);
lv.setAdapter(adapter);
}
}
以上所述是小編給大家介紹的Android控件之使用ListView實(shí)現(xiàn)時(shí)間軸效果,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
- Android自定義控件實(shí)現(xiàn)時(shí)間軸
- Android使用自定義View實(shí)現(xiàn)橫行時(shí)間軸效果
- Android自定義view仿淘寶快遞物流信息時(shí)間軸
- Android實(shí)現(xiàn)快遞物流時(shí)間軸效果
- Android實(shí)現(xiàn)列表時(shí)間軸
- Android自定義指示器時(shí)間軸效果實(shí)例代碼詳解
- 教你3分鐘了解Android 簡(jiǎn)易時(shí)間軸的實(shí)現(xiàn)方法
- Android自定義View實(shí)現(xiàn)垂直時(shí)間軸布局
- Android自定義時(shí)間軸的實(shí)現(xiàn)過程
- android自定義控件實(shí)現(xiàn)簡(jiǎn)易時(shí)間軸(2)
相關(guān)文章
Android 自定義View的構(gòu)造函數(shù)詳細(xì)介紹
這篇文章主要介紹了Android 自定義View的構(gòu)造函數(shù)詳細(xì)介紹的相關(guān)資料,這里對(duì)構(gòu)造函數(shù)進(jìn)行了對(duì)比按需使用,需要的朋友可以參考下2016-12-12
Android 代碼一鍵實(shí)現(xiàn)銀行卡綁定功能
這篇文章主要介紹了Android 代碼一鍵實(shí)現(xiàn)銀行卡綁定功能,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-04-04
Android手勢(shì)密碼的實(shí)現(xiàn)
這篇文章主要介紹了Android手勢(shì)密碼的實(shí)現(xiàn)的相關(guān)資料,需要的朋友可以參考下2016-04-04
Android列表組件ListView使用詳解之動(dòng)態(tài)加載或修改列表數(shù)據(jù)
今天小編就為大家分享一篇關(guān)于Android列表組件ListView使用詳解之動(dòng)態(tài)加載或修改列表數(shù)據(jù),小編覺得內(nèi)容挺不錯(cuò)的,現(xiàn)在分享給大家,具有很好的參考價(jià)值,需要的朋友一起跟隨小編來看看吧2019-03-03
Android給TextView添加點(diǎn)擊事件的實(shí)現(xiàn)方法
下面小編就為大家?guī)硪黄狝ndroid給TextView添加點(diǎn)擊事件的實(shí)現(xiàn)方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-12-12
Android Imageloader的配置的實(shí)現(xiàn)代碼
這篇文章主要介紹了Android Imageloader的配置的實(shí)現(xiàn)代碼的相關(guān)資料,需要的朋友可以參考下2017-07-07
Android九宮格手勢(shì)密碼代碼設(shè)計(jì)
這篇文章主要為大家詳細(xì)介紹了Android九宮格手勢(shì)密碼的代碼設(shè)計(jì)思路,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-03-03

