Main.xmlレイアウトファイルに、TextViewというファクトというオブジェクトがあります。 sharefactという文字列もあります。 TextViewにあるテキストをsharefact文字列に保存したいと思います。できません:
sharefact = thefact
または、sharefactをテキストビューに変換する必要があるため、それに類似したもの。
ありがとう!
TextView
からテキストを取得すると、CharSequence
が返されます。 CharSequence
をString
に変換するには、toString()
関数を使用します。
String sharedFact = theFact.getText().toString();
TextView theFact = (TextView) findViewById(R.id.theFact);
String shareFact = theFact.getText().toString();