应用程序因自定义视图崩溃

时间:2014-06-12 09:26:15

标签: android android-drawable

我有简单的自定义视图,应该为进度条绘制缩放数字,当我将其添加到布局时,它会导致应用程序崩溃。

public class ScaleBar extends View {

    Paint linePaint = new Paint();

    public ScaleBar(Context context) {
        super(context);
        initDrawingTool();
    }

    private void initDrawingTool(){

        linePaint.setColor(Color.WHITE);
    }

    @Override
public void onDraw(Canvas canvas) {
    int skaicius = 9;
    int barHeight = VerticalProgressBar.getVariable();
    for(int i = barHeight/10; i < barHeight-barHeight/10 ; i+=barHeight/10){
        String testString = Integer.toString(skaicius);
        canvas.drawText(testString, getWidth()/2-3, i, linePaint);
        skaicius--;
    }
        canvas.drawText("10", getWidth()/2-10, 20, linePaint);
        canvas.drawText("0", getWidth()/2-3, barHeight, linePaint); 
    }
}

布局XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <View.VerticalProgressBar
        android:id="@+id/verticalRatingBar1"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginLeft="5dp"
        android:progress="10"
        android:progressDrawable="@drawable/bluebar" />

    <View.ScaleBar
        android:id="@+id/scaling"
        android:layout_width="30dp"
        android:layout_height="match_parent" />

    <View.VerticalProgressBar
        android:id="@+id/verticalRatingBar2"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="10dp"
        android:layout_height="match_parent"
        android:progressDrawable="@drawable/bluebar"
        android:progress="20" />
</LinearLayout>
  • 为什么会崩溃?
  • 如何在视图中间绘制缩放?如果我这样做getWidth()/2那么我得到:

10 9 8

我希望所有数字居中。

提前谢谢

编辑:左边我在平板电脑10.1和#34;正确的是我在Eclipse中看到的。第9个刻度线和1缺失,910附近绘制

  • 在中心画数字怎么样?或者我必须手动执行此操作getWidth()/ 2 -10

enter image description here enter image description here

1 个答案:

答案 0 :(得分:2)

  

我有简单的自定义视图,应该为其绘制缩放数字   进度条,当我将其添加到布局时,它会导致应用程序崩溃。

你错过了布局的构造函数,

 public ScaleBar(Context context, AttributeSet attrs) {
        super(context, attrs);