如何单击或点击TextView文本


199

我知道这很简单(doh ...),但是我正在寻找一种在Android App中点击或单击TextView文本行来运行方法的方法。

我一直在考虑按钮侦听器和匿名方法侦听器调用,但是它似乎不适用于TextView。

有人可以指出一些代码片段来显示在TextView中单击或点击文本如何运行方法吗?


64
您应该真的接受最重要的答案。
Marek Sebera 2012年

8
他必须登录才能这样做。
卡尔·安德森

15
而且他还带走了一个不错的用户名:/
MeetM 2014年

对于未来,如果某人是一个使用科特林,并希望有完全控制权与回调可点击文本-我写了一个关于它的文章以具有延伸功能TextView- link.medium.com/TLq6s8ltc3
侯赛因·汗

Answers:


456

您可以使用以下属性在xml中设置点击处理程序:

android:onClick="onClick"
android:clickable="true"

不要忘记clickable属性,没有它,就不会调用click处理程序。

main.xml

    ...

    <TextView 
       android:id="@+id/click"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"               
       android:text="Click Me"
       android:textSize="55sp"
       android:onClick="onClick"                
       android:clickable="true"/>
    ...

MyActivity.java

       public class MyActivity extends Activity {

          public void onClick(View v) {
            ...
          }  
       }

60
“不要忘记单击属性,没有它,就不会调用单击处理程序。” 该行保存了y天。非常感谢哥们。
N-JOY

2
developer.android.com/reference/android/view/…需要提及有关可点击的内容。本可以节省一个小时。
泰勒,

4
有趣的是,使用setOnClickListener设置了clickable属性,但onClick显然没有使用。
njzk2 2014年

5
似乎onClick 确实clickable在Android 5.0 Lollipop(API 21)设置了属性。也许他们认为这是旧版本中没有发生的错误?
Mark Doliner 2014年

有没有一种方法可以通过XML进行长按?
Amyth

52

这可能不是您要找的东西,但这正是我正在做的事情。所有这些都在我的之后onCreate

boilingpointK = (TextView) findViewById(R.id.boilingpointK);

boilingpointK.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        if ("Boiling Point K".equals(boilingpointK.getText().toString()))
            boilingpointK.setText("2792");
        else if ("2792".equals(boilingpointK.getText().toString()))
            boilingpointK.setText("Boiling Point K");
    }
});

28

好的,我已经回答了我自己的问题(但这是最好的方法吗?)

单击或单击TextView中的某些文本时,这是运行方法的方法:

package com.textviewy;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.TextView;

public class TextyView extends Activity implements OnClickListener {

TextView t ;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    t = (TextView)findViewById(R.id.TextView01);
    t.setOnClickListener(this);
}

public void onClick(View arg0) {
    t.setText("My text on click");  
    }
}

而我的main.xml是:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
<LinearLayout android:id="@+id/LinearLayout01" android:layout_width="wrap_content"             android:layout_height="wrap_content"></LinearLayout>
<ListView android:id="@+id/ListView01" android:layout_width="wrap_content"   android:layout_height="wrap_content"></ListView>
<LinearLayout android:id="@+id/LinearLayout02" android:layout_width="wrap_content"   android:layout_height="wrap_content"></LinearLayout>

<TextView android:text="This is my first text"
 android:id="@+id/TextView01" 
 android:layout_width="wrap_content" 
 android:textStyle="bold"
 android:textSize="28dip"
 android:editable = "true"
 android:clickable="true"
 android:layout_height="wrap_content">
 </TextView>
 </LinearLayout>

13

在一个调用布局和textview的活动中,此点击监听器可以工作:

setContentView(R.layout.your_layout);
TextView tvGmail = (TextView) findViewById(R.id.tvGmail);
String TAG = "yourLogCatTag";
tvGmail.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View viewIn) {
                try {
                    Log.d(TAG,"GMAIL account selected");
                } catch (Exception except) {
                    Log.e(TAG,"Ooops GMAIL account selection problem "+except.getMessage());
                }
            }
        });

文本视图的声明如下(默认向导):

        <TextView
            android:id="@+id/tvGmail"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/menu_id_google"
            android:textSize="30sp" />

并在strings.xml文件中

<string name="menu_id_google">Google ID (Gmail)</string>

11

尽管可以通过将侦听器设置为textview来解决问题,但建议不要这样做。您应该使用平面按钮,因为它是Button的子类,并且提供了TextView不提供的许多属性。


要使用平面按钮,请添加style="?android:attr/borderlessButtonStyle"属性-

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="DONE"
    style="?android:attr/borderlessButtonStyle"/>

7

在textView中

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Text"
    android:onClick="onClick"
    android:clickable="true"

您还必须实现View.OnClickListener,并且在On Click方法中可以使用intent

    Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
           intent.setData(Uri.parse("https://youraddress.com"));    
            startActivity(intent);

我测试了此解决方案,效果很好。


3

要单击一段文本(而不是整个文本TextView),可以使用HtmlLinkify(创建打开URL的链接,但不是应用程序中的回调)。

Linkify

使用如下字符串资源:

<string name="links">Here is a link: http://www.stackoverflow.com</string>

然后在textview中:

TextView textView = ...
textView.setText(R.string.links);
Linkify.addLinks(textView, Linkify.ALL);

Html

使用Html.fromHtml

<string name="html">Here you can put html &lt;a href="http://www.stackoverflow.com"&gt;Link!&lt;/&gt;</string>

然后在您的文本视图中:

textView.setText(Html.fromHtml(getString(R.string.html)));

0

您可以将TextWatcher用于TextView,它比ClickLinstener更加灵活(不是最好的,就是更好的一种)。

holder.bt_foo_ex.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            // code during!

        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {
            // code before!

        }

        @Override
        public void afterTextChanged(Editable s) {
            // code after!

        }
    });
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.