mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-12-03 08:53:07 +01:00
19 lines
603 B
XML
19 lines
603 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
<EditText
|
|
android:id="@+id/numvar_edittext"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="number">
|
|
</EditText>
|
|
<SeekBar
|
|
android:id="@+id/numvar_seekbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
</SeekBar>
|
|
</LinearLayout>
|