mmayoub

MathApp, activity_settings.xml

Sep 11th, 2021 (edited)
935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    android:orientation="vertical"
  7.    tools:context=".SettingsActivity">
  8.  
  9.  
  10.     <TextView
  11.        android:id="@+id/textView"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:text="Settings"
  15.        android:textAlignment="center"
  16.        android:textColor="#FF0000"
  17.        android:textSize="36sp"
  18.        android:textStyle="bold" />
  19.  
  20.     <TextView
  21.        android:id="@+id/tvRange"
  22.        android:layout_width="match_parent"
  23.        android:layout_height="wrap_content"
  24.        android:text="Range"
  25.        android:textAlignment="textStart"
  26.        android:textColor="#FF00FF"
  27.        android:textSize="28sp"
  28.        android:textStyle="bold" />
  29.  
  30.     <LinearLayout
  31.        android:layout_width="match_parent"
  32.        android:layout_height="wrap_content"
  33.        android:layout_margin="6dp"
  34.        android:orientation="horizontal">
  35.  
  36.         <TextView
  37.            android:id="@+id/tvMin"
  38.            android:layout_width="wrap_content"
  39.            android:layout_height="wrap_content"
  40.            android:layout_marginStart="6dp"
  41.            android:text="min = 5"
  42.            android:textSize="20sp" />
  43.  
  44.         <SeekBar
  45.            android:id="@+id/skbMin"
  46.            style="@style/Widget.AppCompat.SeekBar.Discrete"
  47.            android:layout_width="match_parent"
  48.            android:layout_height="wrap_content"
  49.            android:max="15"
  50.            android:min="5"
  51.            android:progress="3" />
  52.     </LinearLayout>
  53.  
  54.     <LinearLayout
  55.        android:layout_width="match_parent"
  56.        android:layout_height="wrap_content"
  57.        android:layout_margin="6dp"
  58.        android:orientation="horizontal">
  59.  
  60.         <TextView
  61.            android:id="@+id/tvMax"
  62.            android:layout_width="wrap_content"
  63.            android:layout_height="wrap_content"
  64.            android:layout_marginStart="6dp"
  65.            android:text="max = 7"
  66.            android:textSize="20sp" />
  67.  
  68.         <SeekBar
  69.            android:id="@+id/skbMax"
  70.            style="@style/Widget.AppCompat.SeekBar.Discrete"
  71.            android:layout_width="match_parent"
  72.            android:layout_height="wrap_content"
  73.            android:max="15"
  74.            android:min="5"
  75.            android:progress="10" />
  76.     </LinearLayout>
  77.  
  78.     <TextView
  79.        android:id="@+id/tvOperators"
  80.        android:layout_width="match_parent"
  81.        android:layout_height="wrap_content"
  82.        android:text="Operators"
  83.        android:textAlignment="textStart"
  84.        android:textColor="#FF00FF"
  85.        android:textSize="28sp"
  86.        android:textStyle="bold" />
  87.  
  88.     <CheckBox
  89.        android:id="@+id/chkAdd"
  90.        android:layout_width="match_parent"
  91.        android:layout_height="wrap_content"
  92.        android:text="Addition (+)"
  93.        android:textSize="20sp" />
  94.  
  95.     <CheckBox
  96.        android:id="@+id/chkSub"
  97.        android:layout_width="match_parent"
  98.        android:layout_height="wrap_content"
  99.        android:text="Substraction (-)"
  100.        android:textSize="20sp" />
  101.  
  102.     <CheckBox
  103.        android:id="@+id/chkMul"
  104.        android:layout_width="match_parent"
  105.        android:layout_height="wrap_content"
  106.        android:text="Multiplication (x)"
  107.        android:textSize="20sp" />
  108.  
  109.     <CheckBox
  110.        android:id="@+id/chkDiv"
  111.        android:layout_width="match_parent"
  112.        android:layout_height="wrap_content"
  113.        android:text="Division (/)"
  114.        android:textSize="20sp" />
  115.  
  116.     <LinearLayout
  117.        android:layout_width="match_parent"
  118.        android:layout_height="wrap_content"
  119.        android:orientation="horizontal">
  120.  
  121.         <Button
  122.            android:layout_width="match_parent"
  123.            android:layout_height="wrap_content"
  124.            android:layout_margin="6dp"
  125.            android:layout_weight="1"
  126.            android:onClick="saveSettingsCLicked"
  127.            android:text="Save" />
  128.  
  129.         <Button
  130.            android:layout_width="match_parent"
  131.            android:layout_height="wrap_content"
  132.            android:layout_margin="6dp"
  133.            android:layout_weight="1"
  134.            android:onClick="cancelClicked"
  135.            android:text="Cancel"></Button>
  136.     </LinearLayout>
  137. </LinearLayout>
Add Comment
Please, Sign In to add comment