我无法从设置布局(包括视图)的 Activity 调用自定义视图(“canvasview”)的方法。我什至不能从活动中调用 canvasview 的“getter”。
此外,我将视图传递给自定义类(不扩展 Activity),并且我也无法从我的自定义类中调用 canvasview 的方法。
我不确定我做错了什么......
游戏活动.java:
public class GameActivity extends Activity implements OnClickListener
{
private View canvasview;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.game_layout);
canvasview = (View) findViewById(R.id.canvasview);
// Eclipse displays ERROR con those 2 method calls:
int w = canvasview.get_canvaswidth();
int h = canvasview.get_canvasheight();
(...)
游戏布局.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".GameActivity" >
(...)
<com.example.test.CanvasView
android:id="@+id/canvasview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
画布视图.java:
public class CanvasView extends View
{
private Context context;
private View view;
private int canvaswidth;
private int canvasheight;
public CanvasView(Context context, AttributeSet attrs)
{
super(context, attrs);
this.context = context;
this.view = this;
}
@Override
protected void onSizeChanged(int width, int height,
int old_width, int old_height)
{
this.canvaswidth = width;
this.canvasheight = height;
super.onSizeChanged(width, height, old_width, old_height);
}
public int get_canvaswidth()
{
return this.canvaswidth;
}
public int get_canvasheight()
{
return this.canvasheight;
}
我对此感到很困惑:?
我还有另一个类(它不扩展“Activity”),它在构造函数中接收对 canvasview 的引用并且也无法“解决”它:?
谢谢,对不起,如果问题太明显,我从 Java 开始,这些事情让我很困惑......
编辑:
在睡觉时(凌晨 03:00),考虑到这一点,我注意到 Eclipse 将该行标记为错误,因为 View 对象实际上并没有 get_canvaswidth() 方法。只有子“CanvasView”方法有它。因此,我的问题可以通过upcast解决:
int w = ((CanvasView) canvasview).get_canvaswidth();
我的意思是我收到一个视图作为参数,但因为我现在它真的是一个视图子,我应该能够使用向上转换来调用“子”方法。现在 eclipse 不会产生错误,但w 和 h 总是报告 0 :-? . 我还测试了不使用答案中建议的向上转换,并在调用中发送和接收 CanvasView 对象,我也得到 0 :?