Android快遞物流信息布局開發(fā)
本文實(shí)例為大家分享了Android快遞物流信息布局展示的具體代碼,供大家參考,具體內(nèi)容如下
1. 思路介紹
效果圖:

思路:
就一個(gè)ListView,每個(gè)item就是一條物流信息。然后每個(gè)item,分為左和右兩邊,左邊是一個(gè)進(jìn)度條的風(fēng)格,右邊是物流文字,適配器里面判斷item,position為0 就設(shè)置為綠色,其他position就設(shè)置為灰色就行了。

2. 代碼
item的布局
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content" > <!-- 左邊 --> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="vertical" > <!-- 上面的豎線 --> <View android:id="@+id/view_top_line" android:layout_width="2dp" android:layout_height="15dp" android:background="@color/lightgray" android:layout_gravity="center_horizontal" android:layout_marginTop="-1dp" /> <!-- 圓點(diǎn) --> <ImageView android:id="@+id/iv_expres_spot" android:layout_width="20dp" android:layout_height="20dp" android:background="@drawable/express_point_old" android:layout_marginBottom="2dp" android:layout_marginTop="2dp" /> <!-- 豎線 --> <View android:layout_width="2dp" android:layout_height="wrap_content" android:background="@color/lightgray" android:layout_gravity="center_horizontal" /> </LinearLayout> <!-- 右邊 --> <LinearLayout android:layout_weight="1" android:layout_width="0dp" android:layout_height="wrap_content" android:orientation="vertical" android:layout_marginLeft="10dp" android:layout_marginTop="17dp" > <TextView android:id="@+id/tv_express_text" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="asdfasdfasd大事發(fā)生的蘇打粉asdfasdfas阿斯蒂芬斯蒂芬阿薩德發(fā)達(dá)省份撒旦法" android:textColor="@color/gray" android:lineSpacingExtra="2dp" android:textSize="16sp" android:textIsSelectable="true" /> <TextView android:id="@+id/tv_express_time" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@color/lightgray" android:textSize="12sp" android:text="2016年4月27日 00:27:45" android:layout_marginTop="5dp" android:textIsSelectable="true" android:paddingBottom="10dp" /> <!-- 底部分割線 --> <View android:layout_width="match_parent" android:background="@color/lightgray" android:layout_height="0.5dp" /> </LinearLayout> </LinearLayout>
適配器代碼
package com.tpnet.hlquery.Express;
import android.content.Context;
import android.graphics.Color;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.tpnet.hlquery.Express.json.Content;
import com.tpnet.hlquery.R;
import java.util.List;
/**
* Created by tpnet on 2016/4/27.
*/
public class MessListAdapter extends BaseAdapter {
//allContent就是所有物流信息的list
private List<Content> allContent;
private Context context;
private LayoutInflater layoutInflater;
MessListAdapter(Context context,List<Content> allContent){
this.allContent = allContent;
this.context = context;
layoutInflater = LayoutInflater.from(context);
}
@Override
public int getCount() {
return allContent.size();
}
@Override
public Object getItem(int position) {
return allContent.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if(convertView == null){
holder = new ViewHolder();
convertView = layoutInflater.inflate(R.layout.item_express_data,null);
holder.viewTopLine = convertView.findViewById(R.id.view_top_line);
holder.ivExpresSpot = (ImageView) convertView.findViewById(R.id.iv_expres_spot);
holder.tvExpressText = (TextView) convertView.findViewById(R.id.tv_express_text);
holder.tvExpressTime = (TextView) convertView.findViewById(R.id.tv_express_time);
//將ViewHolder與convertView進(jìn)行綁定
convertView.setTag(holder);
}else{
holder = (ViewHolder)convertView.getTag();
}
Content content = allContent.get(position);
//設(shè)置數(shù)據(jù)顏色,防止view 復(fù)用,必須每個(gè)設(shè)置
if(position == 0 ){ //上頂部背景透明,點(diǎn)是灰色,字體是綠色
holder.viewTopLine.setBackgroundColor(Color.TRANSPARENT);
holder.ivExpresSpot.setBackgroundResource(R.drawable.express_point_new);
holder.tvExpressText.setTextColor(context.getResources().getColor(R.color.mainColor));
holder.tvExpressTime.setTextColor(context.getResources().getColor(R.color.mainColor));
}else{
holder.viewTopLine.setBackgroundColor(context.getResources().getColor(R.color.lightgray));
holder.ivExpresSpot.setBackgroundResource(R.drawable.express_point_old);
holder.tvExpressText.setTextColor(context.getResources().getColor(R.color.gray));
holder.tvExpressTime.setTextColor(context.getResources().getColor(R.color.lightgray));
}
holder.tvExpressText.setText(content.getContext());
holder.tvExpressTime.setText(content.getTime());
return convertView;
}
public class ViewHolder{
public View viewTopLine;
private ImageView ivExpresSpot;
private TextView tvExpressText;
private TextView tvExpressTime;
}
}
activity那里就new 上面的Adapter,然后設(shè)置進(jìn)ListView 就可以了。
注意一點(diǎn):
listView一定要設(shè)置:android:divider=”@null”
不然每個(gè)item直接默認(rèn)是有 間隙的。
就這么簡單了,重要的還是item的布局
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- Android實(shí)現(xiàn)快遞單號查詢快遞狀態(tài)信息
- Android自定義view仿淘寶快遞物流信息時(shí)間軸
- Android實(shí)現(xiàn)快遞物流時(shí)間軸效果
- android實(shí)現(xiàn)快遞跟蹤進(jìn)度條
- Android實(shí)現(xiàn)仿美團(tuán)、順豐快遞數(shù)據(jù)加載效果
- Android實(shí)現(xiàn)快遞物流跟蹤布局效果
- Android使用http請求手機(jī)號碼歸屬地查詢代碼分享
- Android編程實(shí)現(xiàn)號碼歸屬地查詢的方法
- kotlin實(shí)現(xiàn)快遞與號碼歸屬地查詢案例詳解
相關(guān)文章
gradle tool升級到3.0注意事項(xiàng)小結(jié)
這篇文章主要介紹了gradle tool升級到3.0注意事項(xiàng)及修改相關(guān)文件介紹,需要的朋友可以參考下2018-02-02
Android Animation實(shí)戰(zhàn)之屏幕底部彈出PopupWindow
這篇文章主要為大家介紹了Android Animation動(dòng)畫實(shí)戰(zhàn)項(xiàng)目,屏幕底部彈出PopupWindow,如何實(shí)現(xiàn)?文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-01-01
Android使用多線程實(shí)現(xiàn)斷點(diǎn)下載
這篇文章主要介紹了Android使用多線程實(shí)現(xiàn)斷點(diǎn)下載,多線程下載是加快下載速度的一種方式,感興趣的小伙伴們可以參考一下2016-03-03
android教程之把自己的應(yīng)用加入到系統(tǒng)分享中
在Android系統(tǒng)中打開相冊中的某張圖片, 點(diǎn)擊右上角的分享按鈕會彈出分享列表, 把自己的應(yīng)用加入到里面來,下面是設(shè)置方法2014-02-02
Android 6.0 無法在SD卡創(chuàng)建目錄的方法
今天小編就為大家分享一篇Android 6.0 無法在SD卡創(chuàng)建目錄的方法,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-08-08
Notification與NotificationManager詳細(xì)介紹
在Android系統(tǒng)中,發(fā)一個(gè)狀態(tài)欄通知還是很方便的。下面我們就來看一下,怎么發(fā)送狀態(tài)欄通知,狀態(tài)欄通知又有哪些參數(shù)可以設(shè)置2012-11-11
Android自定義控件實(shí)現(xiàn)顏色選擇器
這篇文章主要為大家詳細(xì)介紹了Android自定義控件實(shí)現(xiàn)顏色選擇器,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-06-06
Android中使用achartengine生成圖表的具體方法
這篇文章主要介紹了Android中使用achartengine生成圖表的具體方法,有需要的朋友可以參考一下2014-01-01

