android点按钮不会执行自定义的单击事件

//func_choose.java文档packagecom.example.suyuan_trace;importandroid.app.Activity;import... //func_choose.java文档
package com.example.suyuan_trace;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
public class Func_choose extends Activity implements OnClickListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.func_choose_layout);
}
@Override
public void onClick(View v) {
Log.i("onClick", "onClick but not button_info_manage!");
switch(v.getId()){
case R.id.button_info_manage:
Log.i("button_info_manage", "clicked!");
Intent intent = new Intent();
intent.setClass(this, info_manage.class);
startActivity(intent);
break;
case R.id.button_sys_mainten:
break;
default:
break;
}
}
}
//func_choose_layout.xml文档
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.58" >
<TableRow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonBarButtonStyle" >
<Button
android:id="@+id/button_info_manage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/info_manage"
style="?android:attr/borderlessButtonStyle"/>

</TableRow>
</TableLayout>
</LinearLayout>
点击id为button_info_manage的按钮,没有任何反应,也没有Log.i显示在logcat上面,这是为神马?
展开
 我来答
驴友丶蛮子
推荐于2016-12-01 · TA获得超过659个赞
知道小有建树答主
回答量:747
采纳率:0%
帮助的人:279万
展开全部
你少了一个东西:
在onCreate();方法里面添加以下几行代码

Buttton btn = new Button();
btn = (Button)findViewbyid(R.id.button_info_manage);

btn.setOnclickListener(this);//最关键的是这行代码没有这个你实现了OnClickListener
这个接口也没用
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wdsaber
2015-06-03
知道答主
回答量:18
采纳率:0%
帮助的人:5.6万
展开全部
请问你是在哪里设置setOnclickListener的呢?
追问
onclick()方法啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式