tv.setText("いらっしゃいませ");
という直接プログラムに文字列を入力して表示する方法を
/TestApp/res/values/strings.xml
に
<string name="Wlecome">いらっしゃいませ</string>
と定義しておくことで
tv.setText(R.string.Wlecome);
でも表示できるように変更しました。
Go to list of users who liked
More than 5 years have passed since last update.
tv.setText("いらっしゃいませ");
という直接プログラムに文字列を入力して表示する方法を
/TestApp/res/values/strings.xml
に
<string name="Wlecome">いらっしゃいませ</string>
と定義しておくことで
tv.setText(R.string.Wlecome);
でも表示できるように変更しました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked