5

私はアンドロイドで独自のビューを作成しようとしていますが、これは単に楕円形であり、典型的なandroid:layout_widthおよびandroid:layout_heightパラメータに基づいて正しく描画されます。

たとえば、XML レイアウト ファイルに、最上位のビュー コンテナーである LinearLayout がある場合、独自の楕円形のビューを複数追加できるようにしたいと考えています。(私は「パイフィラー」と呼んでいます)

私は非常に近いことを知っていますが、何らかの理由で、XML ファイル内のユーザーが「fill_parent」または「wrap_content」と言っているかどうかを判断する方法がわかりません。また、その情報を求める必要があるかどうかもわかりません。wrap_content が単純に 40x40 ピクセルの円を描くと仮定しましょう。しかし、XML レイアウト ファイルで、幅が「fill_parent」で高さが「wrap_content」であると指定されている場合、高さ 40 ピクセルで画面のピクセル数の長い水平楕円形が必要です。

以下は、レイアウト xml ファイルとカスタム ビューのコードです。

レイアウトファイル

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:custom="http://schemas.android.com/apk/res/com.example.relativelayoutexample"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <com.example.relativelayoutexample.PieFiller
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        custom:labelPosition="left"
        custom:showText="true" />

    <com.example.relativelayoutexample.PieFiller
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        custom:labelPosition="left"
        custom:showText="true" />

</LinearLayout>

「PieFiller」というカスタム ビュー クラス

package com.example.relativelayoutexample;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;

public class PieFiller extends View
{
    private boolean mShowText;
    private int mTextPos;

    private Paint paint;

    private RectF mBounds;

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


        TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.PieFiller,0,0);

        try
        {
            mShowText = a.getBoolean(R.styleable.PieFiller_showText, false);
            mTextPos = a.getInteger(R.styleable.PieFiller_labelPosition, 0);
        }
        finally
        {
            a.recycle();
        }


        paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setColor(Color.BLUE);
        paint.setStyle(Paint.Style.FILL);
        mBounds = new RectF();
    }

    public void onDraw(Canvas canvas)
    {
        canvas.drawCircle(40.0f, 40.0f, 40.0f, paint);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
    {
        int minw = getSuggestedMinimumWidth();
        int w = Math.max(minw,MeasureSpec.getSize(widthMeasureSpec));

        int minh = this.getSuggestedMinimumHeight();
        int h = Math.max(minh, MeasureSpec.getSize(heightMeasureSpec));

        setMeasuredDimension(w,h);
    }

    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh)
    {
        mBounds = new RectF(0,0,w,h);
    }

    public boolean ismShowText()
    {
        return mShowText;
    }
    public void setmShowText(boolean mShowText)
    {
        this.mShowText = mShowText;
        this.invalidate();
        this.requestLayout();
    }
    public int getmTextPos()
    {
        return mTextPos;
    }
    public void setmTextPos(int mTextPos)
    {
        this.mTextPos = mTextPos;
        this.invalidate();
        this.requestLayout();
    }



}

ちなみに、上記のコードの結果、最初の PieFiller が画面全体を占めています。(私はそれをしたくない)

4

1 に答える 1

6

カスタム ビューの onMeasure() 内に、以下のロジックを追加します。

int width = 100;
    if(getLayoutParams().width==LayoutParams.WRAP_CONTENT)
    {
        width = 40;
    }
    else if((getLayoutParams().width==LayoutParams.MATCH_PARENT)||(getLayoutParams().width==LayoutParams.FILL_PARENT))
    {
        width = MeasureSpec.getSize(widthMeasureSpec);
    }
    else
        width = getLayoutParams().width;


    int height = 100;
    if(getLayoutParams().height==LayoutParams.WRAP_CONTENT)
    {

    }
    else if((getLayoutParams().height==LayoutParams.MATCH_PARENT)||(getLayoutParams().height==LayoutParams.FILL_PARENT))
    {
        height = MeasureSpec.getSize(heightMeasureSpec);
    }
    else
        height = getLayoutParams().height;


    setMeasuredDimension(width|MeasureSpec.EXACTLY, height|MeasureSpec.EXACTLY);
于 2012-09-20T05:45:42.640 に答える