前提・実現したいこと
AndroidStudioでKotlinの勉強を始めたばかりの初心者です。
本を一冊買って、さあ、はじめようか、
というところなのですが。
本には
import kotlinx.android.synthetic.main.activity_main.*
をインポート
とだけ記述されているので、
よくわからないまま、ネットで調べて、そのままコピペしたところ
明らかにエラーっぽい感じで赤くなっています。
おそらくそれが原因だと思いますが
その下にコードを書いても
エラーっぽく赤くなっています。
該当のソースコード
kotlin
1import androidx.appcompat.app.AppCompatActivity 2import android.os.Bundle 3import kotlinx.android.synthetic.main.activity_main.* 4 5class MainActivity : AppCompatActivity() { 6 override fun onCreate(savedInstanceState: Bundle?) { 7 super.onCreate(savedInstanceState) 8 setContentView(R.layout.activity_main) 9 10 button.setOnClickListener{ 11 textView.text = "こんにちは" 12 } 13 } 14}
xml
1<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:app="http://schemas.android.com/apk/res-auto" 3 xmlns:tools="http://schemas.android.com/tools" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 tools:context=".MainActivity"> 7 8 <TextView 9 android:id="@+id/textView" 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" 12 android:text="Hello World!" 13 app:layout_constraintBottom_toBottomOf="parent" 14 app:layout_constraintLeft_toLeftOf="parent" 15 app:layout_constraintRight_toRightOf="parent" 16 app:layout_constraintTop_toTopOf="parent" /> 17 18 <Button 19 android:id="@+id/button" 20 android:layout_width="wrap_content" 21 android:layout_height="wrap_content" 22 android:text="Button" 23 app:layout_constraintEnd_toEndOf="parent" 24 app:layout_constraintStart_toStartOf="parent" 25 app:layout_constraintTop_toBottomOf="@+id/textView" /> 26 27</androidx.constraintlayout.widget.ConstraintLayout>
試したこと
import kotlinx.android.synthetic.main.activity_main.*
をごっそり削除して
ネットで調べて見よう見まねで
var tv:TextView = findViewById(R.id.textView)
var btn:Button = findViewById(R.id.button)
btn.setOnClickListener{ tv.text = "こんにちは" }
これだと上手くいきました。
これはこれでいいとは思うのですが
テキストに記載されているコードとは違うので、どうも腑に落ちない。
補足情報(FW/ツールのバージョンなど)
AndroidStudio4.1.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/30 04:11
2021/03/30 04:33