Initial Commit
This commit is contained in:
31
app/src/main/res/layout-land/activity_slam_controller.xml
Normal file
31
app/src/main/res/layout-land/activity_slam_controller.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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=".SLAM.SlamController">
|
||||
|
||||
<SeekBar
|
||||
android:id="@+id/steeringBar"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="44dp"
|
||||
android:layout_marginEnd="32dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:max="100"
|
||||
android:progress="50"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
|
||||
<SeekBar
|
||||
android:id="@+id/throttleBar"
|
||||
android:layout_width="200dp"
|
||||
android:layout_height="242dp"
|
||||
android:layout_marginBottom="32dp"
|
||||
android:max="100"
|
||||
android:progress="50"
|
||||
android:rotation="270"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user