我知道这很简单(doh ...),但是我正在寻找一种在Android App中点击或单击TextView文本行来运行方法的方法。
我一直在考虑按钮侦听器和匿名方法侦听器调用,但是它似乎不适用于TextView。
有人可以指出一些代码片段来显示在TextView中单击或点击文本如何运行方法吗?
TextView
- link.medium.com/TLq6s8ltc3
我知道这很简单(doh ...),但是我正在寻找一种在Android App中点击或单击TextView文本行来运行方法的方法。
我一直在考虑按钮侦听器和匿名方法侦听器调用,但是它似乎不适用于TextView。
有人可以指出一些代码片段来显示在TextView中单击或点击文本如何运行方法吗?
TextView
- link.medium.com/TLq6s8ltc3
Answers:
您可以使用以下属性在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) {
...
}
}
setOnClickListener
设置了clickable
属性,但onClick
显然没有使用。
onClick
确实clickable
在Android 5.0 Lollipop(API 21)中设置了属性。也许他们认为这是旧版本中没有发生的错误?
这可能不是您要找的东西,但这正是我正在做的事情。所有这些都在我的之后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");
}
});
好的,我已经回答了我自己的问题(但这是最好的方法吗?)
单击或单击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>
在一个调用布局和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>
在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);
我测试了此解决方案,效果很好。
要单击一段文本(而不是整个文本TextView
),可以使用Html
或Linkify
(创建打开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 <a href="http://www.stackoverflow.com">Link!</></string>
然后在您的文本视图中:
textView.setText(Html.fromHtml(getString(R.string.html)));
您可以将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!
}
});