我有一个扩展类view
,它定义了一个自定义绘图(一个电阻器)。我想单击一个按钮并将其添加view
到main layout
. 这样我就可以看到电阻,如果我再次点击它会添加另一个电阻等等。但我不知道解决这个问题的最佳方法。我看过很多关于 的问题layoutinflater
,但没有一个会夸大自定义视图类(也许我正在寻找错误的东西),始终是一个xml
文件。 所以我的问题是:如何ResistorViews
向我的布局添加多个,以便用户可以与它们交互(移动、删除、突出显示等)?
这是我尝试过的:
活动课:
public class CircuitSolverActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button bAddResistor = (Button) findViewById(R.id.bAdd);
final LinearLayout mLayout = (LinearLayout)findViewById(R.layout.main);
final ResistorView mResistor = new ResistorView(this, 100, 100);
bAddResistor.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
mLayout.addView(mResistor);
}
});
}
}
电阻视图类:
public class ResistorView extends View{
private Path mSymbol;
private Paint mPaint;
int mX, mY;
//...Override Constructors...
public ResistorView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public ResistorView(Context context, int x, int y){
super(context);
mX = x;
mY = y;
init();
}
private void init() {
mSymbol = new Path();
mPaint = new Paint();
mPaint.setAntiAlias(true);
mPaint.setStrokeWidth(2);
mPaint.setColor(-7829368);
mPaint.setStyle(Paint.Style.STROKE);
mSymbol.moveTo(0.0F, 0.0F);
mSymbol.lineTo(0.0F, 50.0F);
mSymbol.lineTo(16.666666F, 58.333332F);
mSymbol.lineTo(-16.666666F, 75.0F);
mSymbol.lineTo(16.666666F, 91.666664F);
mSymbol.lineTo(-16.666666F, 108.33333F);
mSymbol.lineTo(16.666666F, 124.99999F);
mSymbol.lineTo(-16.666666F, 141.66666F);
mSymbol.lineTo(0.0F, 150.0F);
mSymbol.lineTo(0.0F, 200.0F);
mSymbol.offset(mX, mY);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
canvas.drawPath(mSymbol, mPaint);
}
}
主要的.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/main">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<Button
android:id="@+id/bAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add RES" />
</LinearLayout>
谢谢。
编辑:已解决*再次感谢您的帮助。*