android,button数组可以定义点击事件吗?每个都写一遍好麻烦啊,
///10city_button_array[10].setOnLongClickListener(newOnLongClickListener(){@Overridep...
// /10 city_button_array[10].setOnLongClickListener(new OnLongClickListener() { @Override public boolean onLongClick(View v) { // TODO Auto-generated method stub city_button_array[10].setVisibility(View.GONE);city_button_array[10].setText(""); return true; } }); // /11 city_button_array[11].setOnLongClickListener(new OnLongClickListener() { @Override public boolean onLongClick(View v) { // TODO Auto-generated method stub city_button_array[11].setVisibility(View.GONE);city_button_array[11].setText(""); return true; } });
展开
展开全部
我们在界面上经常会用到button按钮,但通常button点击后看不到点击的效果,如果用户连续点击了两次,就会报NAR错误,这样交互性就比较差了。如果我们自定义了button点击效果,比如我们点击了button能让我们看到我们确实点击了button按钮,这样就会有效的避免重复点击了。
自定义点击效果有两种方式,一种是在xml中定义,另一种是在代码中定义。
首先看一下如何在xml中定义:
在drawable下新建selector.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_press" android:state_pressed="true"/>
<item android:drawable="@drawable/button_nomal" android:state_focused="false" android:state_pressed="false"/>
<item android:drawable="@drawable/button_focus" android:state_focused="true"/>
<item android:drawable="@drawable/button_nomal" android:state_focused="false"/>
</selector>
定义了两种状态 一种是按下 一种是获得焦点。 drawable分别引用了这三张图片
然后在main.xml下添加button按钮
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button效果演示"
android:background="@drawable/selector" />
在MainActivtiy中得到button
Button button1=(Button) this.findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "你点击了button按钮", Toast.LENGTH_SHORT).show();
}
});
下面看下点击效果:
点击button前:
当按下button按钮时:
接下来 看下第二种实现方式,在代码中实现:
首先在main.xml中添加:
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button效果演示"
android:background="@drawable/button_nomal"/>
接下面在MainActivity中实现:
Button button2=(Button) this.findViewById(R.id.button2);
button2.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if(event.getAction()==MotionEvent.ACTION_DOWN){
v.setBackgroundResource(R.drawable.button_press);
}else if(event.getAction()==MotionEvent.ACTION_UP){
v.setBackgroundResource(R.drawable.button_nomal);
}
return false;
}
});
在这类绑定了button的OnTouchListener监听,因为OnClickListener继承了OnTouchListener。运行效果和上面一样,这里不做过多解释。
自定义点击效果有两种方式,一种是在xml中定义,另一种是在代码中定义。
首先看一下如何在xml中定义:
在drawable下新建selector.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_press" android:state_pressed="true"/>
<item android:drawable="@drawable/button_nomal" android:state_focused="false" android:state_pressed="false"/>
<item android:drawable="@drawable/button_focus" android:state_focused="true"/>
<item android:drawable="@drawable/button_nomal" android:state_focused="false"/>
</selector>
定义了两种状态 一种是按下 一种是获得焦点。 drawable分别引用了这三张图片
然后在main.xml下添加button按钮
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button效果演示"
android:background="@drawable/selector" />
在MainActivtiy中得到button
Button button1=(Button) this.findViewById(R.id.button1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "你点击了button按钮", Toast.LENGTH_SHORT).show();
}
});
下面看下点击效果:
点击button前:
当按下button按钮时:
接下来 看下第二种实现方式,在代码中实现:
首先在main.xml中添加:
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button效果演示"
android:background="@drawable/button_nomal"/>
接下面在MainActivity中实现:
Button button2=(Button) this.findViewById(R.id.button2);
button2.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
if(event.getAction()==MotionEvent.ACTION_DOWN){
v.setBackgroundResource(R.drawable.button_press);
}else if(event.getAction()==MotionEvent.ACTION_UP){
v.setBackgroundResource(R.drawable.button_nomal);
}
return false;
}
});
在这类绑定了button的OnTouchListener监听,因为OnClickListener继承了OnTouchListener。运行效果和上面一样,这里不做过多解释。
展开全部
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnLongClickListener;
import android.widget.Button;
public class MainActivity extends Activity implements OnLongClickListener {
private Button[] city_button_array = new Button[10];
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// button[] 初始化 自己解决
for (int i = 0; i < city_button_array.length; i++) {
city_button_array[i].setOnLongClickListener(this);
}
}
@Override
public boolean onLongClick(View view) {
int id = view.getId();
for (int i = 0; i < city_button_array.length; i++) {
if (city_button_array[i].getId() == id) {
city_button_array[i].setVisibility(View.GONE);
city_button_array[i].setText("");
}
}
return false;
}
}
import android.os.Bundle;
import android.view.View;
import android.view.View.OnLongClickListener;
import android.widget.Button;
public class MainActivity extends Activity implements OnLongClickListener {
private Button[] city_button_array = new Button[10];
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// button[] 初始化 自己解决
for (int i = 0; i < city_button_array.length; i++) {
city_button_array[i].setOnLongClickListener(this);
}
}
@Override
public boolean onLongClick(View view) {
int id = view.getId();
for (int i = 0; i < city_button_array.length; i++) {
if (city_button_array[i].getId() == id) {
city_button_array[i].setVisibility(View.GONE);
city_button_array[i].setText("");
}
}
return false;
}
}
更多追问追答
追问
你的可以。 view.getId();和if (city_button_array[i].getId() == id) 是什么意思呢?
你的可以。 view.getId();和if (city_button_array[i].getId() == id) 是什么意思呢?
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询