次のように、ユーザー定義の色の円である動的メニュー項目が必要です。
このメニュー項目をタッチすると、カラーピッカーが開きます。
今、私はビューを拡張するサンプルColorPickerIconを持っています
public class ColorPickerIcon extends View {
private Paint mPaint;
private int mColor;
private final int mRadius = 20;
public ColorPickerIcon(Context context) {
super(context);
mColor = Color.BLACK;
mPaint = createPaint();
}
public ColorPickerIcon(Context context, AttributeSet attrs) {
super(context, attrs);
mColor = Color.BLACK;
mPaint = createPaint();
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawCircle(0, 0, mRadius, mPaint);
}
public void setPaintColor(int color) {
mColor = color;
}
private Paint createPaint() {
Paint temp = new Paint();
temp.setAntiAlias(true);
temp.setStyle(Paint.Style.STROKE);
temp.setStrokeJoin(Paint.Join.ROUND);
temp.setStrokeWidth(6f);
temp.setColor(mColor);
return temp;
}
}
およびmenu.xml
<item
Android:id="@+id/menu_pick_color"
Android:title="@string/pick_color"
yourapp:showAsAction="always"
yourapp:actionViewClass="com.example.widgets.ColorPickerIcon"/>
<item
Android:id="@+id/menu_clear"
Android:icon="@null"
Android:title="@string/clear"
yourapp:showAsAction="always"/>
<item
Android:id="@+id/menu_save"
Android:icon="@null"
Android:title="@string/save"
yourapp:showAsAction="always"/>
しかし、この方法では機能せず、クラスをインスタンス化することもレンダリングすることもできません。カスタムクラスとカスタムダイナミックビューをメニュー項目として使用する方法はありますか?
さて、それはそれよりも簡単であることが判明しました。
DrawingActivityで
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_drawing, menu);
MenuItem colorPicker = menu.findItem(R.id.menu_pick_color);
ShapeDrawable circle = new ShapeDrawable(new OvalShape());
circle.getPaint().setColor(Color.GREEN);
circle.setIntrinsicHeight(120);
circle.setIntrinsicWidth(120);
circle.setBounds(0, 0, 120, 120);
colorPicker.setIcon(circle);
return true;
}
menu.xmlで
<item
Android:id="@+id/menu_pick_color"
Android:title="@string/pick_color"
yourapp:showAsAction="always"/>
それで全部です。
必要なのは、アイテムに必要なビューを持つレイアウトファイルを作成することです。メニューでアイテムを宣言するときに、次のようにレイアウトを割り当てます。
<item
Android:id="@+id/menu_pick_color"
Android:title="@string/pick_color"
app:showAsAction="always"
app:actionLayout="@layout/my_custom_item"/>
以上です!
編集:
カスタム項目にアクセスし、実行時に色を変更するには、これを実行できます。
アクティビティ(またはフラグメント)でonPrepareOptionsMenu
をオーバーライドします(「onCreateOptionsMenu」でメニューを既に膨らませていると仮定)
@Override
public boolean onPrepareOptionsMenu(Menu menu) {
//Get a reference to your item by id
MenuItem item = menu.findItem(R.id.menu_pick_color);
//Here, you get access to the view of your item, in this case, the layout of the item has a FrameLayout as root view but you can change it to whatever you use
FrameLayout rootView = (FrameLayout)item.getActionView();
//Then you access to your control by finding it in the rootView
YourControlClass control = (YourControlClass) rootView.findViewById(R.id.control_id);
//And from here you can do whatever you want with your control
return true;
}