Robotium:如何使用 clickOnButton() 自定义按钮

发布于 2024-12-01 21:12:31 字数 243 浏览 2 评论 0原文

我是 Android 机器人的新手。我有自定义小部件(MyButton、MyTextView、MyCheckBox 等),它们是从本机 android 小部件继承的。如何在 Robotium 脚本中为自定义控件添加单击事件?

我尝试使用 Solo.clickOnButton("Test Button"),其中“Test Button”是 MyButton 的实例,但我没有收到该按钮的单击事件。任何建议都会非常有帮助。

谢谢, -罗恩..

I am new to Android robotium. I am having custom widgets(MyButton, MyTextView, MyCheckBox etc..,) which got inherited from native android widgets. How can i add a click event for my custom controls in a robotium script?

I tried using Solo.clickOnButton("Test Button") where the "Test Button" is an instance of MyButton, but i am not getting click event for the Button. Any suggestions would be really helpful.

Thanks,
-Ron..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

摇划花蜜的午后 2024-12-08 21:12:32

我假设您使用扩展按钮等创建 MyButton ,

那么要指定单击操作,您应该使用普通形式。例如

main.xml:

<com.Ron.MyButton
    android:id="@+id/custom_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

在您的代码中,您可以访问该按钮

 Button myButton  = (Button)findViewById(R.id.custom_button);

,然后像处理其他普通按钮一样分配 onClick 操作:

 myButton.setOnclickListener(new onclickListener ....

将 onClickAction 分配给所有视图的其他方法是使用 int xml :

<com.Ron.MyButton
    android:id="@+id/custom_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onClick="nameOfMethod"/>  

然后在您的代码中:(

  public void nameOfMethod (View v){
    //code when click the view 
  }

这适用于所有视图、线性布局、图像视图、bustom 按钮...所有)

I suposse you create the MyButton using extend Button etc etc

Well to asign click action you should use the normal form. For expample

main.xml:

<com.Ron.MyButton
    android:id="@+id/custom_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

In your code you can acces to that button

 Button myButton  = (Button)findViewById(R.id.custom_button);

And then asign onClick action like you do with other normal button:

 myButton.setOnclickListener(new onclickListener ....

Other method to asing onClickAction to all views is use int the xml :

<com.Ron.MyButton
    android:id="@+id/custom_button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:onClick="nameOfMethod"/>  

And then in your code:

  public void nameOfMethod (View v){
    //code when click the view 
  }

(This works with all view, linearlayout, imageviews, bustom button .... all )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文