前提・実現したいこと
Androidのアプリを開発しています。アプリではMainActivityからカスタムビューのinit関数に値を渡し、スライダーを動かそうとしているのですが、そのスライダーの色と背景色をactivity_main.xmlから変更したいです。
発生している問題・エラーメッセージ
アプリを起動してもカスタムビューが表示されません。
該当のソースコード
カスタムビューのVerticalGauge.javaです。
java
1package ***; 2 3import android.content.Context; 4import android.content.res.TypedArray; 5import android.graphics.Canvas; 6import android.graphics.Color; 7import android.graphics.Paint; 8import android.util.AttributeSet; 9import android.view.View; 10 11public class VerticalGauge extends View { 12 private int position; 13 private int bgColor; 14 private int slColor; 15 private boolean showValue; 16 17 private int contentWidth; 18 private int contentHeight; 19 20 private Paint paint = new Paint(); 21 22 public VerticalGauge(Context context){ 23 super(context); 24 } 25 public VerticalGauge(Context context, AttributeSet attrs) { 26 super(context, attrs); 27 } 28 public VerticalGauge(Context context, AttributeSet attrs, int defStyleAttr) { 29 super(context, attrs, defStyleAttr); 30 31 // 属性リストを取得 32 TypedArray a = context.getTheme().obtainStyledAttributes(attrs, 33 R.styleable.VerticalGauge, // 属性の定義 34 defStyleAttr, 35 0); // デフォルトの属性値 36 37 try { 38 bgColor = a.getColor(R.styleable.VerticalGauge_VG_background,Color.BLACK); 39 slColor = a.getColor(R.styleable.VerticalGauge_VG_bar,Color.GREEN); 40 }finally { 41 a.recycle(); 42 } 43 } 44 45 protected void onDraw(Canvas canvas){ 46 super.onDraw(canvas); 47 contentHeight = getHeight(); 48 contentWidth = getWidth(); 49 System.out.println("VerticalGauge on draw. " + slColor); 50 51 //塗りつぶし 52 canvas.drawColor(bgColor); 53 54 paint.setStyle(Paint.Style.FILL); 55 paint.setColor(slColor); 56 canvas.drawRect(0,contentHeight - position-3,contentWidth,contentHeight - position+3,paint); 57 } 58 59 public void init(float value, float min, float max){ 60 float p = (value - min) * contentHeight / (max - min); 61 if(Math.abs(position - p) >= 6) position = (int)p; 62 System.out.println("position : "+ position); 63 invalidate(); //再描画され、onDrawが実行される 64 } 65}
app>res>values>attrs.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="VerticalGauge"> <attr name="VG_background" format="color" /> <attr name="VG_bar" format="color" /> <attr name="VG_value" format="boolean" /> </declare-styleable> </resources>
activity_main.xml(一部抜粋)
<com.example.*.VerticalGauge android:id="@+id/Height" android:layout_width="64dp" android:layout_height="0dp" android:layout_marginTop="10dp" android:layout_marginBottom="10dp" android:orientation="horizontal" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toBottomOf="@+id/Rudder" app:VG_background="#2b2b2b" app:VG_bar="#33ccff" app:VG_value="true" />
試したこと
onDraw内のcanvas.drawColor()関数とpaint.setColor()関数の引数に直接Color.BLACKやColor.GREENと記入したところ、思う通りの動作をしました。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。