按下并移动时android获取按钮文本

时间:2018-08-18 13:28:14

标签: java android button ontouchlistener

我有一个带有4个按钮和文本视图的布局,可以通过选择字母来创建一个单词来制作一个小型游戏。

我的问题是关于如何通过一次触摸获得一个以上按钮值并在按钮上方移动?我尝试使用此代码,但每次触摸仅获得一个值,而移动时没有获得其他按钮的任何值

布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/txtresult"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="102dp"
        android:textColor="@android:color/holo_red_dark"
        android:textSize="30sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/btn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="25dp"
        android:text="A" />

    <Button
        android:id="@+id/btn2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="160dp"
        android:text="T" />

    <Button
        android:id="@+id/btn3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentStart="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="90dp"
        android:text="C" />

    <Button
        android:id="@+id/btn4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentEnd="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="82dp"
        android:text="F" />

</RelativeLayout>

活动

public class MainActivity extends AppCompatActivity implements View.OnTouchListener {
    Button btn1, btn2, btn3, btn4;
    TextView txtresult;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        btn1 = (Button) findViewById(R.id.btn1);
        btn2 = (Button) findViewById(R.id.btn2);
        btn3 = (Button) findViewById(R.id.btn3);
        btn4 = (Button) findViewById(R.id.btn4);
        txtresult = (TextView) findViewById(R.id.txtresult);

        btn1.setOnTouchListener(this);
        btn2.setOnTouchListener(this);
        btn3.setOnTouchListener(this);
        btn4.setOnTouchListener(this);
    }

    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
            switch (view.getId()) {
                case R.id.btn1:
                    txtresult.setText(txtresult.getText().toString() + btn1.getText().toString());
                    break;
                case R.id.btn2:
                    txtresult.setText(txtresult.getText().toString() + btn2.getText().toString());
                    break;
                case R.id.btn3:
                    txtresult.setText(txtresult.getText().toString() + btn3.getText().toString());
                    break;
                case R.id.btn4:
                    txtresult.setText(txtresult.getText().toString() + btn4.getText().toString());
                    break;
            }


        }
        return false;
    }
}

结果应如下所示:

enter image description here

2 个答案:

答案 0 :(得分:0)

我认为您应该在布局视图上设置一个触摸侦听器,并尝试获取X和Y并检测按钮上是否有触摸点的X和Y。

看看Detect touch event on a view when dragged over from other view

答案 1 :(得分:0)

这是我的主意,尝试一下

@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
    if (motionEvent.getAction() == MotionEvent.ACTION_DOWN || motionEvent.getAction() == MotionEvent.ACTION_MOVE) {
        if(get_letter(motionEvent.getX(), motionEvent.getY() != "")
            result.append(get_letter(motionEvent.getX(), motionEvent.getY());
    }
}

private String get_letter(float x, float y) {
    if(is_contain(x, y, btn1)) return btn1.getText();
    else if(is_contain(x, y, btn2)) return btn2.getText();
    else if(is_contain(x, y, btn3)) return btn3.getText();
    else if(is_contain(x, y, btn4)) return btn4.getText();
    else return "";
}

private boolean is_contain(float x, float y, Button view) {
    RectF rect = new RectF();
    view.getHitRect(rect);
    return rect..contains((int)x, (int)y);
}