mirror of
https://github.com/libretro/RetroArch
synced 2025-01-17 19:14:56 +00:00
21 lines
706 B
XML
21 lines
706 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/seekbar_dialog"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<SeekBar
|
|
android:id="@+id/seekbar_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:max="100" />
|
|
|
|
<TextView
|
|
android:id="@+id/seekbar_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:layout_gravity="center" />
|
|
|
|
</LinearLayout> |