タイトルにある通り、developersガイドにある初心者向けのガイドでsendMessageというメソッドがあるのですが、
そこの引数がなぜviewなのかが分かりません。
このガイドでは、文字を入力して送信ボタンを送ると、別のアクティビティにその文字が表示されるアプリの作り方が載っていたのですが、sendMessageメソッドの中を見てみても、viewを使って何かをする訳でもなく、なぜ引数を設定したんだ?と疑問に思いました。
ボタンが押されると、sendMessageが呼び出されるというのは分かったのですが、それと関係あるのでしょうか?
回答よろしくお願いします。
下記に該当のコードを載せておきます。
(文字を入力する画面)
java
1 2package com.example.myfirstapp; 3 4 import androidx.appcompat.app.AppCompatActivity; 5 import android.content.Intent; 6 import android.os.Bundle; 7 import android.view.View; 8 import android.widget.EditText; 9 10 public class MainActivity extends AppCompatActivity { 11 public static final String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE"; 12 @Override 13 protected void onCreate(Bundle savedInstanceState) { 14 super.onCreate(savedInstanceState); 15 setContentView(R.layout.activity_main); 16 } 17 18 /** Called when the user taps the Send button */ 19 public void sendMessage(View view) { 20 Intent intent = new Intent(this, DisplayMessageActivity.class); 21 EditText editText = (EditText) findViewById(R.id.editText); 22 String message = editText.getText().toString(); 23 intent.putExtra(EXTRA_MESSAGE, message); 24 startActivity(intent); 25 } 26 }
(文字を受け取る画面)
java
1package com.example.myfirstapp; 2 3 import androidx.appcompat.app.AppCompatActivity; 4 import android.content.Intent; 5 import android.os.Bundle; 6 import android.widget.TextView; 7 8 9public class DisplayMessageActivity extends AppCompatActivity { 10 11 @Override 12 protected void onCreate(Bundle savedInstanceState) { 13 super.onCreate(savedInstanceState); 14 setContentView(R.layout.activity_display_message); 15 16 // Get the Intent that started this activity and extract the string 17 Intent intent = getIntent(); 18 String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE); 19 20 // Capture the layout's TextView and set the string as its text 21 TextView textView = findViewById(R.id.textView); 22 textView.setText(message); 23 } 24
(出典:https://developer.android.com/training/basics/firstapp/starting-activity)
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。