Android 設置thumb圖片大小


xml:

  android:thumb="@drawable/seekbar_thumb"

seekbar_thumb.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">

    <!-- 普通無焦點狀態 -拖動按鈕 -->
    <item android:drawable="@drawable/tiny" android:state_focused="false" android:state_pressed="false"/>
    <!-- 有焦點狀態 -->
    <item android:drawable="@drawable/tiny" android:state_focused="true" android:state_pressed="false"/>
    <!-- 有焦點 -->
    <item android:drawable="@drawable/tiny" android:state_focused="true"/>

</selector>

修改為:

    private int seekWidth = 60;
    private int seekHeight = 30;
    private SeekBar seek;    
        seek = (SeekBar) findViewById(R.id.seekBar);
        Drawable drawable = getNewDrawable(HandDraw.this,R.drawable.tiny, seekWidth, seekHeight);
        seek.setThumb(drawable);     

//調用函數縮小圖片
       public BitmapDrawable getNewDrawable(Activity context, int restId, int                           dstWidth, int dstHeight){
           Bitmap Bmp = BitmapFactory. decodeResource(
           context.getResources(), restId);
           Bitmap bmp = Bmp.createScaledBitmap(Bmp, dstWidth, dstHeight, true);
           BitmapDrawable d = new BitmapDrawable(bmp);
           Bitmap bitmap = d.getBitmap();  
           if (bitmap.getDensity() == Bitmap.DENSITY_NONE) {  
               d.setTargetDensity(context.getResources().getDisplayMetrics());  
           }
           return d;
     }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM