首页 > 系统 > Android > 正文

Android给TextView添加点击事件的实现方法

2019-12-12 04:18:21
字体:
来源:转载
供稿:网友

首先设定TextView的clickable属性为true。

可以在布局文件中进行设定,比如:

<TextView      android:id="@+id/phone"      android:clickable="true" --------->设定此属性      android:layout_marginLeft="10dp"      android:layout_below="@id/address"      android:layout_toRightOf="@id/avatar"      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:layout_marginTop="10dp"      android:text="18764563523"      android:textColor="@color/white" />

也可以在java代码中设定:

textView.setClickable(true);

然后绑定事件回调函数:

textView.setOnClickListener(new OnClickListener() {@Overridepublic void onClick(View arg0) {//调到拨号界面Uri uri = Uri.parse("tel:18764563501");  Intent intent = new Intent(Intent.ACTION_DIAL, uri);   startActivity(intent);}});

 完成TextView的点击事件绑定!

以上就是小编为大家带来的Android给TextView添加点击事件的实现方法全部内容了,希望大家多多支持武林网~

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表