int
ユーザーの入力に依存する があります。それを画面に表示するにはどうすればよいint
ですか?
これが私が試みてきたことです:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@int/HW" // What goes here, This is where i am confused
tools:context=".DisplayMessageActivity" />
また、ここに私が定義した変数があります。このプログラムに関する私の投稿を少し前に見たことがあるかもしれません。
// Receive messages from options page
Intent intent = getIntent();
int HW = intent.getIntExtra("MESSAGE_HW", 0);
int OTW = intent.getIntExtra("MESSAGE_OTW", 0);
int HPD = intent.getIntExtra("MESSAGE_HPD", 0);
画面に int HW を表示しようとしています。ありがとうございました!