‘壹’ android获取textview中内容获取进行if条件判断
textview.setText();
textview.getText().toString();
‘贰’ android如何获取textview里的值拨打电话的按钮如何获取值
TextView text=(TextView)findViewById(R.id.textview01);
String s=text.getText().toString().trim();
Intent myIntentDial=new Intent("android.intent.action.CALL",Uri.parse("tel:"+s)); startActivity(myIntentDial)。