点击Android手机屏幕

时间:2011-07-15 11:58:23

标签: android ontouchevent

我在android中有一个应用程序,我想要实现以下功能:

我想通过python脚本点击android mobile上的图片。

有谁知道我怎么能实现这个目标?

2 个答案:

答案 0 :(得分:2)

您可以使用单个按钮创建布局。将按钮的背景设置为所需的图像。使按钮的宽度和高度与父级匹配。然后以正常方式注册按钮以启动活动。所以像这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
    <Button 
        android:layout_width="match_parent" 
        android:id="@+id/button1"
        android:layout_height="match_parent" 
        android:background="@drawable/background">
    </Button>
</LinearLayout>

您的活动如下:

public class ActivityA extends Activity implements OnClickListener
{

    @Override
    public void onCreate(Bundle icicle)
    {
        super.onCreate(icicle);
        setContentView(R.layout.main);
        Button buttonA = (Button) findViewById(R.id.button1);
        buttonA.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        final Intent intent = new Intent(getApplicationContext(), ActivityB.class);
        startActivity(intent);
    }
}

当用户按下“后退”时,他或她将返回巨型按钮活动。

答案 1 :(得分:0)

如果您想从一项活动转移到另一项活动,请尝试此操作。

Intent myIntent = new Intent(CurrentActivity.this,NextActivity.class);   
myIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(myIntent);

以上代码会将您从 CurrentActivity 带到 NextActivity ....

每当你想要发生这种情况时,只需执行这三个陈述, 那会做你的工作......