Android StudioでJavaでコードを書いています。
下記コードの24行目の「Log.i(tag:"MyTag", msg:computerRam + "");」でエラー警告が出ております。
tagとmsgの下に赤いな目線のエラーが表示されており、それぞれ「Cannot resolve symbol 'tag'」、「Cannot resolve symbol 'msg'」と警告内容が表示されます。
ネットでも解決策を調べてみたのですが、自力では解決が難しいと判断し、今回質問させて頂きました。
大変お手数ではございますが、ご回答頂けると幸いです。
MainActivity.java
1package com.example.variables; 2 3import androidx.appcompat.app.AppCompatActivity; 4 5import android.os.Bundle; 6import android.util.Log; 7import android.widget.TextView; 8 9public class MainActivity extends AppCompatActivity { 10 11 @Override 12 protected void onCreate(Bundle savedInstanceState) { 13 super.onCreate(savedInstanceState); 14 setContentView(R.layout.activity_main); 15 16 int age = 20; 17 float price = 1.5f; 18 double underScore = 4.5789321; 19 long computerRam = 345456756786786761L; 20 boolean isDead = false; 21 String name = "Morteza"; 22 char letterA = 'A'; 23 24 Log.i(tag:"MyTag", msg:computerRam + ""); 25 26 TextView text = findViewById(R.id.text); 27 28 int sumTwoIntegerNumber = 10 + 5; 29 text.setText(sumTwoIntegerNumber + ""); 30 31 } 32}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/11 02:54