Skip to content

Instantly share code, notes, and snippets.

@codeforfun-jp
Created July 12, 2022 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeforfun-jp/4023be0ec3a6806ecae8a12c4ef0f51b to your computer and use it in GitHub Desktop.
Save codeforfun-jp/4023be0ec3a6806ecae8a12c4ef0f51b to your computer and use it in GitHub Desktop.
【Kotlin】How to Use SeekBar 1
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
android:gravity="center">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="100"
android:textSize="36sp"/>
<SeekBar
android:id="@+id/seekbar"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:max="100"
android:progress="50"
android:layout_marginVertical="40dp"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="リセット"/>
</LinearLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment