TextViewテキストをクリックまたはタップする方法


199

私はこれがとても簡単であることを知っています(doh ...)が、AndroidアプリでTextView行のテキストをタップまたはクリックしてメソッドを実行する方法を探しています。

ボタンリスナーと匿名メソッドリスナーの呼び出しについて考え続けていますが、TextViewには適用されないようです。

誰かがコードスニペットを私に向けて、TextView内のテキストの一部をクリックまたはタップするとメソッドがどのように実行されるかを示すことができますか?


64
あなたは本当に一番上の答えを受け入れるべきです。
Marek Sebera

8
そのためにはログインする必要があります。
カールアンダーソン

15
そして彼はまた素敵なユーザー名を取り上げました:/
MeetM

誰かがKotlinを使用していると、コールバックとクリック可能なテキスト上で完全な制御を持っているしたい場合には、将来のために、 -私はのための拡張機能を持っていることについての記事を書いたTextView- link.medium.com/TLq6s8ltc3
ホサインカーン

回答:


456

次の属性を使用して、クリックハンドラーをxmlに設定できます。

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

クリック可能な属性を忘れないでください。属性がないと、クリックハンドラーは呼び出されません。

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 2011年

2
developer.android.com/reference/android/view/…クリッカブルについて何か言及する必要があります。1時間節約できたでしょう。
テイラー

4
おかしなことに、を使用setOnClickListenerするとclickable属性が設定されますが、onClick属性を使用すると明らかにそうではありません。
njzk2 14

5
のように思えるonClick 設定clickableのAndroid 5.0ロリポップ(API 21)内の属性を。多分彼らはそれが古いバージョンでは起こらなかったバグだと考えましたか?
Mark Doliner 2014年

XMLを介して長いクリックでこれを行う方法はありますか?
エイミス2015年

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

OK私は自分の質問に答えました(しかし、それが最善の方法ですか?)

これは、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

レイアウトとテキストビューを呼び出すアクティビティ内から、このクリックリスナーは機能します:

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 = new Intent(android.content.Intent.ACTION_VIEW);
           intent.setData(Uri.parse("https://youraddress.com"));    
            startActivity(intent);

私はこのソリューションをテストして問題なく動作しました。


3

(全体ではなくTextView)テキストの一部をクリックするには、Htmlまたはを使用しますLinkify(ただし、どちらもURLを開くリンクを作成しますが、アプリのコールバックではありません)。

Linkify

次のような文字列リソースを使用します。

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

次に、テキストビューで:

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

TextViewにTextWatcherを使用できます。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!

        }
    });
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.