作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含按钮的自定义导航栏,我会调度点击事件,以便包含我的导航栏的 Activity 可以响应点击
public class BarrePersonnalisee extends LinearLayout implements OnClickListener {
Context mycontext;
View convertview;
ImageButton searchadresse;
public BarrePersonnalisee(Context context, AttributeSet attrs) {
super(context, attrs);
mycontext=context;
convertview=LayoutInflater.from(mycontext).inflate(R.layout.barre, this);
searchadresse=(ImageButton)convertview.findViewById(R.id.searchadresse);
searchadresse.setOnClickListener(this);
}
public void onClick(View arg0) {
switch (arg0.getId()) {
case R.id.searchadresse:
//I want to dispatch this event
break;
}
}
....
}
public class TaxiMapActivity extends MapActivity{
BarrePersonnalisee barre;
...
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
barre=(BarrePersonnalisee)this.findViewById(R.id.barre1);
//task to do here
}
谁能帮忙?
最佳答案
我相信您正在寻找的是 button.performClick()
如果你不想要点击声音,你可以这样做:
button.setSoundEffectsEnabled(false)
关于java - 如何在 Android 中发送点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6814587/
我是一名优秀的程序员,十分优秀!