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

溫馨提示×

溫馨提示×

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

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

Android中評分RationBar控件怎么用

發布時間:2021-09-23 14:28:11 來源:億速云 閱讀:134 作者:小新 欄目:編程語言

這篇文章主要介紹了Android中評分RationBar控件怎么用,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

具體內容如下

用ViewGroup包起來感覺會寫很多View,于是我決定使用之定義控件,直接上代碼

/** * 評論專用星星 * <p> * 寬高都不能用wrap_content 必須使用固定值或者match_parent * <p> * MIXED : 在控件的寬度范圍內等分星星 * <p> * SCROLL:根據 星星的寬度和每個星星之間的間距畫星星 */public class SuperRationBar extends View implements View.OnTouchListener {  final public static int MIXED = 0;  final public static int SCROLL = 1;  //不傳默認為 MIXED  private int mode = MIXED;  // 需要建立多少星星 不傳 默認為5  private int number = 5;  // 單個星星的寬度 這里寬度和高度相等 必傳  private int startWidth = 50;  // 每個星星之間的間距 默認20 (mode == MIXED 用不到)  private int startPadding = 10;  //是否已經初始化試圖  private boolean isInit = false;  //被選中的個數  private int selectNumber = 0;  //選中的樣式  private Bitmap bmSel;  //未選中的樣式  private Bitmap bmNol;  //記錄每個星星的位置 用 , 分割  private List<String> pointList;  // 畫筆  private Paint mPaint;  public SuperRationBar(Context context, AttributeSet attrs) {    super(context, attrs);    init(context, attrs);    init(context);  }  private void init(Context context) {    mPaint = new Paint();    setOnTouchListener(this);  }  private void init(Context context, AttributeSet attrs) {    TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.SuperRationBar);    mode = a.getInteger(R.styleable.SuperRationBar_mode, MIXED);    number = a.getInteger(R.styleable.SuperRationBar_SuperRationBar_number, 5);    startWidth = (int) a.getDimension(R.styleable.SuperRationBar_SuperRationBar_startWidth, 50);    startPadding = (int) a.getDimension(R.styleable.SuperRationBar_SuperRationBar_startPadding, 10);    a.recycle();  }  @Override  public void draw(Canvas canvas) {    super.draw(canvas);    if (!isInit) {      return;    }    {//記錄每個星星的位置 用 , 分割      pointList = new ArrayList<>();    }    if (mode == MIXED) {      //單個星星的寬度      int itemWidth = getWidth() / number;      //根據每個星星之間的間距畫星星      for (int i = 0; i < number; i++) {        int left = i == 0 ? 0 : itemWidth * i;        int height = getHeight();        int bmHeight = bmSel.getHeight();        int top = (getHeight() - startWidth) / 2;        pointList.add(left + "," + top + "," + (left + itemWidth) + "," + (top + itemWidth));        if (i < selectNumber) {          canvas.drawBitmap(bmSel, left, top, mPaint);        } else {          canvas.drawBitmap(bmNol, left, top, mPaint);        }      }    } else if (mode == SCROLL) {      int totalWidth = (startWidth + startPadding) * (number - 1) + startWidth;      //單個星星的寬度      int itemWidth = totalWidth / number;      //根據每個星星之間的間距畫星星      for (int i = 0; i < number; i++) {        int left = i == 0 ? 0 : itemWidth * i;        int top = (getHeight() - startWidth) / 2;        pointList.add(left + "," + top + "," + (left + itemWidth) + "," + (top + itemWidth));        if (i < selectNumber) {          canvas.drawBitmap(bmSel, left, top, mPaint);        } else {          canvas.drawBitmap(bmNol, left, top, mPaint);        }      }    }  }  @Override  protected void onFinishInflate() {    super.onFinishInflate();    isInit = true;  }  /**   * 設置三種圖片樣式的id   *   * @param selId   * @param nolId   */  public SuperRationBar setImageResIds(int selId, int nolId) {    bmSel = BitmapFactory.decodeResource(getResources(), selId);    bmNol = BitmapFactory.decodeResource(getResources(), nolId);    bmSel = zoomBitmap(bmSel, startWidth);    bmNol = zoomBitmap(bmNol, startWidth);    return this;  }  /**   * 調用這個方法刷新頁面   */  public void launcher() {    if (isInit) {      postInvalidate();    } else {      post(new Runnable() {        @Override        public void run() {          postInvalidate();        }      });    }  }  @Override  public boolean onTouch(View v, MotionEvent event) {    if (event.getAction() == MotionEvent.ACTION_DOWN        || event.getAction() == MotionEvent.ACTION_MOVE) {      if (pointList != null) {        int num = contain((int) event.getX(), (int) event.getY());        if (num != -1) {          selectNumber = num + 1;        }        postInvalidate();      }      if (event.getAction() == MotionEvent.ACTION_DOWN) {        return true;      }    }    return false;  }  /**   * 判斷點擊的位置是不是在星星上邊 并返回星星的下標 錯誤 返回-1   *   * @param x   * @param y   * @return   */  private int contain(int x, int y) {    int size = pointList.size();    for (int i = 0; i < size; i++) {      String[] pointArray = pointList.get(i).split(",");      int rl = Integer.parseInt(pointArray[0]);      int rt = Integer.parseInt(pointArray[1]);      int rr = Integer.parseInt(pointArray[2]);      int rb = Integer.parseInt(pointArray[3]);      if (x > rl && x < rr) {        //在范圍內 返回下標        return i;      }    }    return -1;  }  public int getSelectNumber() {    return selectNumber;  }  /**   * 等比例縮放bitmap圖片   *   * @param bitmap   * @param reqWidth   * @return   */  public Bitmap zoomBitmap(Bitmap bitmap, float reqWidth) {    if (bitmap == null) {      return null;    }    final int width = bitmap.getWidth();    Matrix matrix = new Matrix();    float scale = reqWidth / width;    matrix.setScale(scale, scale);    bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(),        bitmap.getHeight(), matrix, true);    return bitmap;  }}
<declare-styleable name="SuperRationBar">    <attr name="SuperRationBar_number" format="integer" />    <attr name="SuperRationBar_startWidth" format="dimension" />    <attr name="SuperRationBar_startPadding" format="dimension" />    <attr name="mode">      <enum name="fixed" value="0" />      <enum name="scroll" value="1" />    </attr>  </declare-styleable>

注釋得還是挺詳細的 這里直接上使用代碼

<com.xxx.widget.SuperRationBar    android:id="@+id/RationBar0"    android:layout_width="match_parent"    android:layout_height="50dp"    android:layout_marginLeft="50dp"    android:layout_marginTop="10dp"    android:layout_marginRight="50dp"    android:background="@color/colorAccent"    app:SuperRationBar_number="6"    app:SuperRationBar_startPadding="10dp"    app:SuperRationBar_startWidth="40dp"    app:mode="fixed" />

SuperRationBar_startWidth 這個為必傳 而且只能在布局里面傳 RationBar0.setImageResIds(R.mipmap.img_ration_bar_sel, R.mipmap.img_ration_bar_nol)        .launcher();

使用就這么一句 調用

int number0 = RationBar0.getSelectNumber();

可以獲取到當前的評分是多少

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android中評分RationBar控件怎么用”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

昌黎县| 汝南县| 天水市| 辽源市| 营山县| 平遥县| 徐州市| 无锡市| 环江| 灵寿县| 宜城市| 广德县| 家居| 云龙县| 荣成市| 沙田区| 上犹县| 临城县| 利川市| 泾阳县| 通城县| 五家渠市| 郧西县| 克什克腾旗| 灵台县| 闸北区| 彩票| 吉林省| 贵定县| 龙胜| 柳林县| 唐海县| 富阳市| 唐山市| 肃宁县| 法库县| 镇赉县| 双流县| 枝江市| 彰化市| 宜宾市|