Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
FMアプリケーションに問題があります。エラーは以下のコードにあります:
String tmp=((editText)findViewById(R.id.editText1)).getText().toString();
エラーは、editTextをタイプに解決できないことを示しています。それはどういう意味で、どのように解決するのですか?
以下の行を使用
EditText mEdttxt1=((EditText)findViewById(R.id.editText1)); String tmp= mEdttxt1.getText().toString();
それ以外の