我基本上在Android中获取Textview的值,然后散列该Text但我得到一个异常 String无法转换为Android.Widget.TextView 这是我的简单代码
TextView mypassword;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.registration);
mypassword= (TextView)findViewById(R.id.password);
mypassword= BCrypt.hashpw(mypassword,BCrypt.gensalt(12));
}
hashpw采用以下参数hashpw(Java.lang.String,String) 我一直在试图把这个没有任何建议吗?
答案 0 :(得分:1)
通过致电String
上的TextView
,您可以获得getText().toString()
中文字的TextView
值。