以编程方式在MainActivity中添加Custom ImageView

时间:2013-03-09 20:54:58

标签: android imageview android-imageview android-custom-view

我想将自定义ImageView动态添加到MainActivity中,MainActivity已包含EditText,以便EditView下的整个空间应由ImageView覆盖。然后我会在TouchEvent上的ImageView上绘制一些东西,并相应地将一些文本输出到EditText。但是我的方法没有任何结果。请帮忙。
* activity_main.xml *

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:id="@+id/RL"
 >

<EditText
    android:id="@+id/et1"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:ems="10"
    android:inputType="textMultiLine" />

</RelativeLayout>

MainActivity.java

public class MainActivity extends Activity {
BondImage BI;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); 
    BI = new BondImage(this);           
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

BondImage.java

public class BondImage extends ImageView{

Canvas c;
Paint p;
Bitmap bm;
float x, y;
public BondImage(Context context) {
    super(context);
    // TODO Auto-generated constructor stub
    bm = Bitmap.createBitmap(LayoutParams.MATCH_PARENT,LayoutParams.MATCH_PARENT,Config.ARGB_8888);
    RelativeLayout rl = (RelativeLayout)findViewById(R.id.RL);
    rl.addView(this, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
    c = new Canvas(bm);
    p = new Paint();
    p.setColor(Color.MAGENTA);
    x = y = 0;
}

public boolean onTouchEvent(MotionEvent me){
    c.drawCircle(x, y, 25, p);   //example
    this.setImageBitmap(bm);
    x ++; y ++;
            /*  and some other stuff  */
    return true;        
}
}

2 个答案:

答案 0 :(得分:0)

BI = new BondImage(this);尚未添加到未显示的布局视图

setContentView(BI); 

答案 1 :(得分:0)

好吧,最后我修改了我的方法(实际上这是我最初的想法,但我仍然不满意) 我在EditText下创建了一个静态ImageView,用它来直接处理MotionEvents和绘图。对于MotionEvent我不得不规范化坐标,因为简单地使用getX和getY会给出相对于整个视图的坐标但是我需要它们相对于ImageView。这种方法的缺点是它有点慢,这就是为什么我不喜欢使用它。但是现在我没有其他方法可以在同一个活动中处理EditText和自定义ImageView 任何建议将不胜感激。