如何给自定义视图类充气?

时间:2012-07-09 03:36:15

标签: android android-layout android-custom-view android-inflate

我有一个扩展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);                 

        }
    });
  }    

}

ResistorView类:

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);       
  }
}

main.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>

感谢。

编辑已解决 * 再次感谢您的帮助。 *

3 个答案:

答案 0 :(得分:4)

Inflating(就Android视图而言)仅限于XML。如果您在代码中动态创建和添加视图对象,那么这不会膨胀。你现在在代码中所做的非常接近。唯一的问题是您实例化视图一次,而听起来您希望每次单击时添加一个新视图。尝试将实例化移动到单击处理程序中:

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.id.main);
    bAddResistor.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {               
            final ResistorView mResistor = new ResistorView(CircuitSolverActivity.this, 100, 100);
            mLayout.addView(mResistor);                 
        }
    });
  }    
}

答案 1 :(得分:2)

将上下文另存为private Context context;等私有实例变量 并在活动的构造函数中初始化context=this;之类的上下文。使用onclick回调方法中的上下文变量添加自定义视图

bAddResistor.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {               
     final ResistorView resistor = new ResistorView(context, 100, 100);
     mLayout.addView(resistor);
    }
});

答案 2 :(得分:0)

您可以通过添加其名称来引用外部类的“this”。假设您在A类中定义了一个B类。在B中,“this”指的是B,但你也可以输入“A.this”并得到A的结果。

希望这有帮助。

Shachar