我有一个具有自定义imageView的活动。在imageView中,我想从活动中调用方法。
这可能吗?
MainActivity:
package com.example.helloworld;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
int score=0;
public void myFunction(){
Log.d("LOG","call from imageView " + (score++));
}
}
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" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is a TextView" />
<com.example.MyImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
MyImageViewClass
public class MyImageViewClass extends ImageView {
public MyImageViewClass(Context context, AttributeSet attrs) {
super(context, attrs);
}
protected void onDraw(Canvas canvas) {
MainActivity.myFunction();
}
}
换句话说,我想从myFunction(in Activity)
(在MyImageView中)呼叫onDraw()
有可能吗?
答案 0 :(得分:1)
您可以使用通过MainActivity的上下文(通过MainActivity的上下文)进行上下文初始化的图像,并在自定义imageview类中声明上下文并使用传递的图像进行初始化。当您在MainActivity中调用公共方法时,请使用该上下文,就像我在下面所做的
public class MyImageViewClass extends ImageView {
Context context;
public MyImageViewClass(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
}
protected void onDraw(Canvas canvas) {
((MainActivity)context).myFunction();
}
}