我正在构建一个Android应用程序,它有许多我想要点击的TextView。
我尝试将属性android:clickable="true"
和android:onClick="clickHandler"
分配给单个TextView
,当应用触发clickHandler(View v)
时,我通过v.getId()
正确获取被点击的项目。
我不喜欢的是为每个TextView
定义属性android:clickable
和android:onClick
...我可以通过代码来说明:“所有文本视图是可点击的,点击是在clickHandler
处理?“
感谢。
答案 0 :(得分:19)
你可以在下面做这样的事情 - 这样他们都有相同的处理程序:
public class sticks extends Activity implements View.OnTouchListener {
private TextView tv1;
private TextView tv2;
private TextView tv3;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv1 = (TextView) findViewById(R.id.tv1);
tv2 = (TextView) findViewById(R.id.tv2);
tv3 = (TextView) findViewById(R.id.tv3);
// bind listeners
tv1.setOnTouchListener(this);
tv2.setOnTouchListener(this);
tv3.setOnTouchListener(this);
}
@Override
public boolean onTouch(View v, MotionEvent event) {
// check which textview it is and do what you need to do
// return true if you don't want it handled by any other touch/click events after this
return true;
}
}
答案 1 :(得分:12)
我用过这个:
<TextView
android:id="@+id/txtTermsConditions"
android:layout_width="180dp"
android:layout_height="50dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="10dp"
android:onClick="onTermConditions"
android:clickable="true"
android:focusable="true"
android:text="Terms and Conditions"
android:textColor="@color/blue" />
答案 2 :(得分:5)
您好,您必须使用以下两个代码:
<TextView
android:id="@+id/reg_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/login_btn"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:clickable="true"
android:text="Are you now need to create an account?"
android:textColor="#ff0000ff"
android:textSize="15sp"
/>
和
private TextView tv1;
tv1= (TextView)findViewById(R.id.reg_text);
tv1.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View arg0, MotionEvent arg1) {
// TODO Auto-generated method stub
ProgressDialog progressBar = ProgressDialog.show(MainActivity.this, "Title",
"شکیبا باشید!");
progressBar.setCancelable(true);
Intent i = new Intent(getApplicationContext(), Register.class);
startActivity(i);
return false;
}
});
答案 3 :(得分:4)
我使用OnClickListener,尝试使用OnTouchListener而不是OnTouchListener.Here是a description how to use them。
答案 4 :(得分:0)
以下代码对我有用:
添加到strings.xml:
<string name="about_us"><font fgcolor="#039BE5">\"THIS IS SPARTA! more info at" <font fgcolor="#000000"><a href="https://google.com/">google.com</a></font>
</string>
添加到TextView:
android:linksClickable="true"
添加到活动:
about_us.movementMethod = LinkMovementMethod.getInstance()