真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在Android中利用View實現(xiàn)一個垂直時間軸布局

這篇文章將為大家詳細講解有關(guān)如何在Android中利用View實現(xiàn)一個垂直時間軸布局,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)公司!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、小程序開發(fā)、集團企業(yè)網(wǎng)站建設(shè)等服務(wù)項目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了銅山免費建站歡迎大家使用!

時間軸,顧名思義就是將發(fā)生的事件按照時間順序羅列起來,給用戶帶來一種更加直觀的體驗。

分析

實現(xiàn)這個最常用的一個方法就是用ListView,我這里用繼承LinearLayout的方式來實現(xiàn)。首先定義了一些自定義屬性:

attrs.xml

 
 
   
     
     
     
     
     
     
     
     
     
     
     
     
     
     
   

TimelineLayout.java

package com.jackie.timeline; 
 
import android.content.Context; 
import android.content.res.TypedArray; 
import android.graphics.Bitmap; 
import android.graphics.Canvas; 
import android.graphics.Paint; 
import android.graphics.drawable.BitmapDrawable; 
import android.support.annotation.Nullable; 
import android.util.AttributeSet; 
import android.view.View; 
import android.widget.LinearLayout; 
 
/** 
 * Created by Jackie on 2017/3/8. 
 * 時間軸控件 
 */ 
 
public class TimelineLayout extends LinearLayout { 
  private Context mContext; 
 
  private int mLineMarginLeft; 
  private int mLineMarginTop; 
  private int mLineStrokeWidth; 
  private int mLineColor;; 
  private int mPointSize; 
  private int mPointColor; 
  private Bitmap mIcon; 
 
  private Paint mLinePaint; //線的畫筆 
  private Paint mPointPaint; //點的畫筆 
   
 
  //第一個點的位置 
  private int mFirstX; 
  private int mFirstY; 
  //最后一個圖標(biāo)的位置 
  private int mLastX; 
  private int mLastY; 
 
  public TimelineLayout(Context context) { 
    this(context, null); 
  } 
 
  public TimelineLayout(Context context, @Nullable AttributeSet attrs) { 
    this(context, attrs, 0); 
  } 
 
  public TimelineLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { 
    super(context, attrs, defStyleAttr); 
    TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.TimelineLayout); 
    mLineMarginLeft = ta.getDimensionPixelOffset(R.styleable.TimelineLayout_line_margin_left, 10); 
    mLineMarginTop = ta.getDimensionPixelOffset(R.styleable.TimelineLayout_line_margin_top, 0); 
    mLineStrokeWidth = ta.getDimensionPixelOffset(R.styleable.TimelineLayout_line_stroke_width, 2); 
    mLineColor = ta.getColor(R.styleable.TimelineLayout_line_color, 0xff3dd1a5); 
    mPointSize = ta.getDimensionPixelSize(R.styleable.TimelineLayout_point_size, 8); 
    mPointColor = ta.getDimensionPixelOffset(R.styleable.TimelineLayout_point_color, 0xff3dd1a5); 
 
    int iconRes = ta.getResourceId(R.styleable.TimelineLayout_icon_src, R.drawable.ic_ok); 
    BitmapDrawable drawable = (BitmapDrawable) context.getResources().getDrawable(iconRes); 
    if (drawable != null) { 
      mIcon = drawable.getBitmap(); 
    } 
 
    ta.recycle(); 
 
    setWillNotDraw(false); 
    initView(context); 
  } 
 
  private void initView(Context context) { 
    this.mContext = context; 
 
    mLinePaint = new Paint(); 
    mLinePaint.setAntiAlias(true); 
    mLinePaint.setDither(true); 
    mLinePaint.setColor(mLineColor); 
    mLinePaint.setStrokeWidth(mLineStrokeWidth); 
    mLinePaint.setStyle(Paint.Style.FILL_AND_STROKE); 
 
    mPointPaint = new Paint(); 
    mPointPaint.setAntiAlias(true); 
    mPointPaint.setDither(true); 
    mPointPaint.setColor(mPointColor); 
    mPointPaint.setStyle(Paint.Style.FILL); 
  } 
 
  @Override 
  protected void onDraw(Canvas canvas) { 
    super.onDraw(canvas); 
     
    drawTimeline(canvas); 
  } 
 
  private void drawTimeline(Canvas canvas) { 
    int childCount = getChildCount(); 
 
    if (childCount > 0) { 
      if (childCount > 1) { 
        //大于1,證明至少有2個,也就是第一個和第二個之間連成線,第一個和最后一個分別有點和icon 
        drawFirstPoint(canvas); 
        drawLastIcon(canvas); 
        drawBetweenLine(canvas); 
      } else if (childCount == 1) { 
        drawFirstPoint(canvas); 
      } 
    } 
  } 
 
  private void drawFirstPoint(Canvas canvas) { 
    View child = getChildAt(0); 
    if (child != null) { 
      int top = child.getTop(); 
      mFirstX = mLineMarginLeft; 
      mFirstY = top + child.getPaddingTop() + mLineMarginTop; 
 
      //畫圓 
      canvas.drawCircle(mFirstX, mFirstY, mPointSize, mPointPaint); 
    } 
  } 
 
  private void drawLastIcon(Canvas canvas) { 
    View child = getChildAt(getChildCount() - 1); 
    if (child != null) { 
      int top = child.getTop(); 
      mLastX = mLineMarginLeft; 
      mLastY = top + child.getPaddingTop() + mLineMarginTop; 
 
      //畫圖 
      canvas.drawBitmap(mIcon, mLastX - (mIcon.getWidth() >> 1), mLastY, null); 
    } 
  } 
 
  private void drawBetweenLine(Canvas canvas) { 
    //從開始的點到最后的圖標(biāo)之間,畫一條線 
    canvas.drawLine(mFirstX, mFirstY, mLastX, mLastY, mLinePaint); 
    for (int i = 0; i < getChildCount() - 1; i++) { 
      //畫圓 
      int top = getChildAt(i).getTop(); 
      int y = top + getChildAt(i).getPaddingTop() + mLineMarginTop; 
      canvas.drawCircle(mFirstX, y, mPointSize, mPointPaint); 
    } 
  } 
 
  public int getLineMarginLeft() { 
    return mLineMarginLeft; 
  } 
 
  public void setLineMarginLeft(int lineMarginLeft) { 
    this.mLineMarginLeft = lineMarginLeft; 
    invalidate(); 
  } 
}

從上面的代碼可以看出,分三步繪制,首先繪制開始的實心圓,然后繪制結(jié)束的圖標(biāo),然后在開始和結(jié)束之間先繪制一條線,然后在線上在繪制每個步驟的實心圓。
activity_main.xml

 
 
 
   
 
     
 
     
   
 
   
 
     
 
     
   
 
   
 
   
 
     
     
   

MainActivity.java

package com.jackie.timeline; 
 
import android.os.Bundle; 
import android.support.v7.app.AppCompatActivity; 
import android.view.LayoutInflater; 
import android.view.View; 
import android.widget.Button; 
import android.widget.TextView; 
 
public class MainActivity extends AppCompatActivity implements View.OnClickListener { 
  private Button addItemButton; 
  private Button subItemButton; 
  private Button addMarginButton; 
  private Button subMarginButton; 
  private TextView mCurrentMargin; 
 
  private TimelineLayout mTimelineLayout; 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
 
    initView(); 
  } 
 
  private void initView() { 
    addItemButton = (Button) findViewById(R.id.add_item); 
    subItemButton = (Button) findViewById(R.id.sub_item); 
    addMarginButton= (Button) findViewById(R.id.add_margin); 
    subMarginButton= (Button) findViewById(R.id.sub_margin); 
    mCurrentMargin= (TextView) findViewById(R.id.current_margin); 
    mTimelineLayout = (TimelineLayout) findViewById(R.id.timeline_layout); 
 
    addItemButton.setOnClickListener(this); 
    subItemButton.setOnClickListener(this); 
    addMarginButton.setOnClickListener(this); 
    subMarginButton.setOnClickListener(this); 
  } 
 
  private int index = 0; 
  private void addItem() { 
    View view = LayoutInflater.from(this).inflate(R.layout.item_timeline, mTimelineLayout, false); 
    ((TextView) view.findViewById(R.id.tv_action)).setText("步驟" + index); 
    ((TextView) view.findViewById(R.id.tv_action_time)).setText("2017年3月8日16:55:04"); 
    ((TextView) view.findViewById(R.id.tv_action_status)).setText("完成"); 
    mTimelineLayout.addView(view); 
    index++; 
  } 
 
  private void subItem() { 
    if (mTimelineLayout.getChildCount() > 0) { 
      mTimelineLayout.removeViews(mTimelineLayout.getChildCount() - 1, 1); 
      index--; 
    } 
  } 
 
  @Override 
  public void onClick(View v) { 
    switch (v.getId()){ 
      case R.id.add_item: 
        addItem(); 
        break; 
      case R.id.sub_item: 
        subItem(); 
        break; 
      case R.id.add_margin: 
        int currentMargin = UIHelper.pxToDip(this, mTimelineLayout.getLineMarginLeft()); 
        mTimelineLayout.setLineMarginLeft(UIHelper.dipToPx(this, ++currentMargin)); 
        mCurrentMargin.setText("current line margin left is " + currentMargin + "dp"); 
        break; 
      case R.id.sub_margin: 
        currentMargin = UIHelper.pxToDip(this, mTimelineLayout.getLineMarginLeft()); 
        mTimelineLayout.setLineMarginLeft(UIHelper.dipToPx(this, --currentMargin)); 
        mCurrentMargin.setText("current line margin left is " + currentMargin + "dp"); 
        break; 
      default: 
        break; 
    } 
  } 
}

item_timeline.xml

 
 
 
   
 
   
 
   
 

附上像素工具轉(zhuǎn)化的工具類:

package com.jackie.timeline; 
 
import android.content.Context; 
 
/** 
 * Created by Jackie on 2017/3/8. 
 */ 
public final class UIHelper { 
 
  private UIHelper() throws InstantiationException { 
    throw new InstantiationException("This class is not for instantiation"); 
  } 
 
  /** 
   * dip轉(zhuǎn)px 
   */ 
  public static int dipToPx(Context context, float dip) { 
    return (int) (dip * context.getResources().getDisplayMetrics().density + 0.5f); 
  } 
 
  /** 
   * px轉(zhuǎn)dip 
   */ 
  public static int pxToDip(Context context, float pxValue) { 
    final float scale = context.getResources().getDisplayMetrics().density; 
    return (int) (pxValue / scale + 0.5f); 
  } 
}

關(guān)于如何在Android中利用View實現(xiàn)一個垂直時間軸布局就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


網(wǎng)站題目:如何在Android中利用View實現(xiàn)一個垂直時間軸布局
網(wǎng)頁地址:http://weahome.cn/article/ijsgpe.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部