AndroidStudioでのボタンクリックについて
Q&A
Closed
AndroidStudioを使ってみようみようと思って始めてみましたが、
TextViewとButtonの配置しただけで詰まってしまいました。
この後にButtonをクリックした際にTextViewの文字列を変化させようと思っていますが、
何度やってもエラーとなってしまいうまくいきません。
いくつかのサイトを確認した結果、
MainActivity.javaへ記述が必要と判断しましたが、うまくいきません。
知見のある方ご教示のほどよろしくお願いします。
[質問事項]
1.TextViewの配置が間違っているのでしょうか?
2.Buttonの配置が間違っているのでしょうか?
3.TableLayoutの配置が間違っているのでしょうか?
4.ボタンをクリックした際の挙動はどう書いたらよろしいのでしょうか?
5.もし初心者でもわかりやすいサイトがあればお願いいたします。
(サイトにプロパティを出すとか書いてあってもその方法すらわからない状況です)
[以下うまくいっていると思われる現状のソース]
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TableLayout
android:id="@+id/tablelayout1"
android:layout_width="100dp"
android:layout_height="250dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="ExtraText">
<TableRow
android:id="@+id/tablerow1"
android:layout_width="50dp"
android:layout_height="50dp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/textview1" />
<TableRow
android:id="@+id/tablerow2"
android:layout_width="50dp"
android:layout_height="50dp" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button1" />
</TableLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
strings.xml
<resources>
<string name="app_name">Button_Test</string>
<string name="textview1">テキスト1</string>
<string name="button1">ボタン1</string>
</resources>