android eclipse 中怎么添加按钮触发
使用eclipse做完了一个helloworld程序,现在想添加一个按钮,点一下,让背景变换颜色,需要怎么做,请大侠给我一个详细的答案,小弟新手,关于怎么侦听,怎么触发都...
使用eclipse做完了一个helloworld程序,现在想添加一个按钮,点一下,让背景变换颜色,需要怎么做,请大侠给我一个详细的答案,小弟新手,关于怎么侦听,怎么触发都还不清楚,书上讲的太笼统
在哪个文件下加啊? 展开
在哪个文件下加啊? 展开
3个回答
展开全部
首先在你的helloworld程序对应的layout配置文件(res/layout/下的XXX.xml文件)中添加一个按钮,具体代码如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 下面这段就是添加的button -->
<Button android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="change background" />
</LinearLayout>
然后在你的继承Activity类的java类中添加按钮的事件监听以及事件处理,代码如下:
public class 你的helloworld类名 extends Activity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.你的layout文件名);
//下面的代码用于为按钮注册一个监听
findViewById(R.id.frame_layout).setOnClickListener(new OnClickListener() {
//下面的代码用于处理按钮点击后的事件
public void onClick(View v) {
//下面的代码用于使背景变色
findViewById(R.id.layout).setBackgroundColor(Color.BLUE);
}
});
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 下面这段就是添加的button -->
<Button android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="change background" />
</LinearLayout>
然后在你的继承Activity类的java类中添加按钮的事件监听以及事件处理,代码如下:
public class 你的helloworld类名 extends Activity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.你的layout文件名);
//下面的代码用于为按钮注册一个监听
findViewById(R.id.frame_layout).setOnClickListener(new OnClickListener() {
//下面的代码用于处理按钮点击后的事件
public void onClick(View v) {
//下面的代码用于使背景变色
findViewById(R.id.layout).setBackgroundColor(Color.BLUE);
}
});
}
}
展开全部
按钮增加单击事件的响应时有两种方式:
1、通过Button的setOnClickListener方法为该按钮绑定一个单击事件监听器,用于监听用户的单击事件。代码如下:
[java] view plaincopy
public class MyActivity extends Activity {
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.content_layout_id);
//手工增加代码开始
//将按钮绑定一个单操作的事件监听器。用于监听用户的单击操作。
final Button button = (Button) findViewById(R.id.button_id);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
//增加自己的代码......
final TextView text = (TextView) findViewById(R.id.textView1);
text.setText("OnClick. " + " ....");
}
});
//手工增加代码结束
}
}
2、通过修改main.xml中Button的属性,为按钮增加单击事件请求。修改的xml文件如下:
[html] view plaincopy
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="OnMySelfClick"
android:text="Button" />
1、通过Button的setOnClickListener方法为该按钮绑定一个单击事件监听器,用于监听用户的单击事件。代码如下:
[java] view plaincopy
public class MyActivity extends Activity {
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.content_layout_id);
//手工增加代码开始
//将按钮绑定一个单操作的事件监听器。用于监听用户的单击操作。
final Button button = (Button) findViewById(R.id.button_id);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
// Perform action on click
//增加自己的代码......
final TextView text = (TextView) findViewById(R.id.textView1);
text.setText("OnClick. " + " ....");
}
});
//手工增加代码结束
}
}
2、通过修改main.xml中Button的属性,为按钮增加单击事件请求。修改的xml文件如下:
[html] view plaincopy
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="OnMySelfClick"
android:text="Button" />
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Button button=(Button)findViewById(R.id.button1);//改为你自己的ID
button.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
具体改背景的代码
});
button.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
具体改背景的代码
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询