91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

自定義動態生成折線圖

發布時間:2020-06-21 23:24:59 來源:網絡 閱讀:631 作者:lg491733638 欄目:移動開發
package com.example.line;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.PaintFlagsDrawFilter;
import android.util.AttributeSet;
import android.view.View;
public class LineView extends View {
 private final static String X_KEY = "Xpos";
 private final static String Y_KEY = "Ypos";
 private List<Map<String, Integer>> mListPoint = new ArrayList<Map<String, Integer>>();
 Paint mPaint = new Paint();
 public LineView(Context context, AttributeSet attrs, int defStyle) {
  super(context, attrs, defStyle);
 }
 public LineView(Context context, AttributeSet attrs) {
  super(context, attrs);
 }
 public LineView(Context context) {
  super(context);
 }
 @SuppressLint("DrawAllocation")
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  mPaint.setColor(Color.RED);
  mPaint.setAntiAlias(true);
  for (int index = 0; index < mListPoint.size(); index++) {
   if (index > 0) {
    canvas.drawLine(mListPoint.get(index - 1).get(X_KEY),
      mListPoint.get(index - 1).get(Y_KEY),
      mListPoint.get(index).get(X_KEY), mListPoint.get(index)
        .get(Y_KEY), mPaint);
    canvas.setDrawFilter(new PaintFlagsDrawFilter(0,
      Paint.ANTI_ALIAS_FLAG | Paint.FILTER_BITMAP_FLAG));
   }
  }
 }
 /**
  * 設置數據
  * @param curX
  * @param curY
  */
 public void setLinePoint(int curX, int curY) {
  Map<String, Integer> temp = new HashMap<String, Integer>();
  temp.put(X_KEY, curX);
  temp.put(Y_KEY, curY);
  mListPoint.add(temp);
  invalidate();
 }
}
UI類:
package com.example.line;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.annotation.SuppressLint;
import android.app.Activity;
@SuppressLint("HandlerLeak")
public class MainActivity extends Activity {
 private static final int MSG_DATA_CHANGE = 0x11;
 private LineView mLineView;
 private Handler mHandler;
 private int mX = 0;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  init();
  mHandler = new Handler() {
   @Override
   public void handleMessage(Message msg) {
    switch (msg.what) {
    case MSG_DATA_CHANGE:
     mLineView.setLinePoint(msg.arg1, msg.arg2);
     break;
    }
    super.handleMessage(msg);
   }
  };
  new Thread() {
   @Override
   public void run() {
    for (int index = 0; index < 100; index++) {
     Message message = new Message();
     message.what = MSG_DATA_CHANGE;
     message.arg1 = mX;
     message.arg2 = (int) (Math.random() * 200);
     mHandler.sendMessage(message);
     try {
      sleep(1000);
     } catch (InterruptedException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
     }
     mX += 10;
    }
   }
  }.start();
 }
 private void init() {
  mLineView = (LineView) findViewById(R.id.line);
 }
}
布局
<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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
    <com.example.line.LineView
        android:id="@+id/line"
        android:layout_centerInParent="true"
        android:layout_width="400dp"
        android:layout_height="400dp"
        android:background="#ffffff"
        />
</RelativeLayout>

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

类乌齐县| 沅陵县| 峡江县| 荔浦县| 洪雅县| 钟祥市| 耒阳市| 芜湖市| 阿合奇县| 巫山县| 海宁市| 广平县| 剑阁县| 辽宁省| 尉犁县| 农安县| 兖州市| 突泉县| 临澧县| 扎兰屯市| 建宁县| 日土县| 华坪县| 贵州省| 精河县| 巴塘县| 砚山县| 阆中市| 堆龙德庆县| 巫山县| 曲阜市| 敖汉旗| 大港区| 晋宁县| 甘德县| 大悟县| 靖宇县| 平塘县| 集安市| 鄱阳县| 固原市|