-
-
Save codeforfun-jp/1d584b95140f6335a438258f12424cb1 to your computer and use it in GitHub Desktop.
【Java】How to Use SeekBar 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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