ANDROID SEEKBARの足し算の値を読みとり足し算を行いたい
下記のソースは
2本のシークバーを表示し(SeekBar00、SeekBar01)、その数値をテキストで表示(TextView00、TextView01)している物になります。
<やりたいこと>
これらを文字から数値へ変換して、足し算を行いTextView02へ表示したいです。
どのように修正すればよいか、教えて頂けますでしょうか。
////////////////////////////////////////////////////
.java
package com.yfuzii.seekbar;
import androidx.appcompat.app.AppCompatActivity;
import android.widget.SeekBar;
import android.widget.TextView;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final SeekBar sb0 = (SeekBar) findViewById(R.id.SeekBar00); final TextView tv0 = (TextView) findViewById(R.id.TextView00); final SeekBar sb1 = (SeekBar) findViewById(R.id.SeekBar01); final TextView tv1 = (TextView) findViewById(R.id.TextView01); final TextView tv2 = (TextView) findViewById(R.id.TextView02); //final String[] x = new String[1]; //final String[] y = new String[1]; // シークバーの初期値をTextViewに表示 tv0.setText("設定値:" +(String.valueOf(sb0.getProgress()))); sb0.setOnSeekBarChangeListener( new SeekBar.OnSeekBarChangeListener() { public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // ツマミをドラッグしたときに呼ばれる tv0.setText("設定値:" +(String.valueOf(sb0.getProgress()))); } public void onStartTrackingTouch(SeekBar seekBar) { // ツマミに触れたときに呼ばれる } public void onStopTrackingTouch(SeekBar seekBar) { // ツマミを離したときに呼ばれる } } ); // シークバーの初期値をTextViewに表示 tv1.setText("設定値:" +(String.valueOf(sb1.getProgress()))); sb1.setOnSeekBarChangeListener( new SeekBar.OnSeekBarChangeListener() { public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // ツマミをドラッグしたときに呼ばれる tv1.setText("設定値:" +(String.valueOf(sb1.getProgress()))); } public void onStartTrackingTouch(SeekBar seekBar) { // ツマミに触れたときに呼ばれる } public void onStopTrackingTouch(SeekBar seekBar) { // ツマミを離したときに呼ばれる } } );
}
}
////////////////////////////////////////////////////////
.xml
<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">
<TextView android:id="@+id/TextView00" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="55dp" android:text="設定値表示" app:layout_constraintBottom_toTopOf="@+id/SeekBar00" app:layout_constraintStart_toStartOf="parent" /> <SeekBar android:id="@+id/SeekBar01" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="405dp" android:max="10" android:progress="0" app:layout_constraintBottom_toBottomOf="parent" tools:layout_editor_absoluteX="-54dp" /> <TextView android:id="@+id/TextView01" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="41dp" android:text="設定値表示2" app:layout_constraintBottom_toTopOf="@+id/SeekBar01" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> <SeekBar android:id="@+id/SeekBar00" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="73dp" android:max="5" android:progress="0" app:layout_constraintBottom_toTopOf="@+id/TextView01" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> <TextView android:id="@+id/TextView02" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginBottom="240dp" android:text="合計" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.0" app:layout_constraintStart_toStartOf="parent" />
あなたの回答
tips
プレビュー