0

Android アプリケーションの一部で問題が発生しています。カスタム ダイアログ ボックスでグラフを描画する必要がありますが、インターネットで見つかったすべてのソリューションに従っても機能しません。私の目標は、ユーザーがメイン フレームのボタンをクリックしたときにダイアログ ボックスを表示することです。これを行うには、非常に単純なダイアログ ボックスに描画します。ダイアログボックスよりも大きくなる可能性があるため、グラフは「スクロール可能」である必要があります。ソースコードは次のとおりです。

public class GraphDialog extends Dialog implements android.view.View.OnClickListener
{
    Canvas canvas;

    public GraphDialog(Context context) 
    {
        super(context);
        System.out.println("Test");
        this.setContentView(R.layout.dialog_graph_layout);
        this.setTitle(R.string.title_dialog_graph);
        ((Button) this.findViewById(R.id.button_ok)).setOnClickListener(this);
    }

    @Override
    public void onClick(View v) 
    {
        Controller.getPollManager().setPoll(null);
        Controller.getPollManager().setTab(null);
        this.cancel();
    }
}

ここに私のxmlがあります:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin" >

    <ScrollView
        android:id="@+id/scroll_layout"
        android:layout_width="500px"
        android:layout_height="800px"
        android:layout_weight="1"
        android:drawingCacheQuality="low"
        android:scrollbars="vertical" >

        <be.ac.ucl.lfsab1509.proxipoll.GraphView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

        </be.ac.ucl.lfsab1509.proxipoll.GraphView>
    </ScrollView>

    <Button
        android:id="@+id/button_ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:layout_weight="0"
        android:text="@string/ok" />

</LinearLayout>

そして、ここに私のカスタムビューがあります:

public class GraphView extends View
{
    Paint paint;

    public GraphView(Context context) 
    {
        super(context);
        System.out.println("test GraphView");
        this.setWillNotDraw(false);
        init();
    }

    public GraphView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        System.out.println("test GraphView");
        this.setWillNotDraw(false);
        init();
    }

    public void init()
    {
        paint = new Paint();

        paint.setColor(Color.BLACK);
    }

    protected void onDraw(Canvas canvas)
    {
        super.onDraw(canvas);
        System.out.println("test onDraw");
        canvas.drawText(Controller.getPollManager().getPoll().name, 50, 50, paint);
        this.draw(canvas);
    }
}

何が問題なのかを確認するために、いくつかの println() を追加したことがわかります。ダイアログ ボックスを表示しようとすると、onDraw() メソッドの on 以外のすべての行が表示されます。誰かがそれを機能させるために何をすべきか知っていますか?

ありがとうございました

4

1 に答える 1

3

オーバーライドしてみてくださいonMeasure: 最後にカスタム チャートを作成したとき、このようなことをする必要がありました。

@Override protected void onMeasure( int widthMeasureSpec, int heightMeasureSpec )
    {
    viewWidth = MeasureSpec.getSize( widthMeasureSpec );
    viewHeight = MeasureSpec.getSize( heightMeasureSpec );

    if(box.getWidth() != 0){
        // use the screen width: oldViewWidth -> screenWidth, viewWidth -> maxXRange
        boxWidth = box.getWidth() - box.getPaddingRight() - box.getPaddingLeft() - 10;
        if(screenWidth <= 0) viewWidth = boxWidth;
        else viewWidth = (int)((getMaxXRange()*boxWidth)/screenWidth);
        if(viewWidth < boxWidth) viewWidth = boxWidth;
    }
    setMeasuredDimension( viewWidth, viewHeight );
    }

これは基本的にウィンドウのサイズをチェックし、必要な大きさをグラフィックレイヤーに伝えます。

于 2013-04-23T19:04:21.687 に答える