gpt4 book ai didi

android - 在同一个类中访问变量

转载 作者:行者123 更新时间:2023-11-29 01:59:25 27 4
gpt4 key购买 nike

我有一个带有按钮的自定义 View 类,我让用户触摸屏幕以便检索坐标。我想要做的是,每当他单击按钮时,将其文本设置为他触摸的坐标。我该怎么做?

public class TargetView extends RelativeLayout{
.
.
.
public float x=0;
public float y=0;

public TargetView(final Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);

((Activity)getContext())
.getLayoutInflater()
.inflate(R.layout.target_view, this, true);

Target=findViewById(R.id.target);
Undo=(Button)findViewById(R.id.undo_bt);

Undo.setOnClickListener(new OnClickListener(){

public void onClick(View v) {
Log.d("x,y",(String.valueOf(x)+","+String.valueOf(y)));
Undo.setText(String.valueOf(x)+","+String.valueOf(y));

}

});

@Override
public boolean onTouchEvent(MotionEvent event){

switch (event.getAction()){
case (MotionEvent.ACTION_DOWN): {

x = event.getX();
y = event.getY();
}
return false;
}
.
.
.
}

编辑我在按钮监听器中添加了一个 Log.d,似乎只有在用户触摸屏幕的其余部分并更改 x、y(文本更改为“0.0”)之前才会单击按钮。

我的 .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.archer.test.TargetView
android:id="@+id/myTargetView"
android:layout_width="300dip"
android:layout_height="300dip"
android:layout_gravity="center_horizontal"
android:background="@drawable/target" >
</android.archer.test.TargetView>

</LinearLayout>
<merge xmlns:android="http://schemas.android.com/apk/res/android">

<View
android:id="@+id/target"
android:layout_width="300dp"
android:layout_height="350dip" />

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
android:id="@+id/undo_bt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="-" />

</RelativeLayout>

最佳答案

- 在 onTouchEvent 方法结束时返回 super.onTouchEvent(event)

例如:

@Override
public boolean onTouchEvent(MotionEvent event){

switch (event.getAction()){
case (MotionEvent.ACTION_DOWN): {

x = event.getX();
y = event.getY();
}
return super.onTouchEvent(event);
}

- 此外,Android 会维护一个 View 层次结构,并相应地处理事件。层次结构中的每个 View 都会获取事件,但前提是父事件尚未使用它。意思是 - 如果您有一个处理 onTouchEvent() 并每次都返回 true 的父 View ,那么 child 永远不会收到该事件

关于android - 在同一个类中访问变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13420625/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com