Advertisement
Swaster

activity_main.xml

Jan 17th, 2025 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.72 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:app="http://schemas.android.com/apk/res-auto"
  4.    xmlns:tools="http://schemas.android.com/tools"
  5.    android:id="@+id/main"
  6.    android:layout_width="match_parent"
  7.    android:layout_height="match_parent"
  8.    android:background="#ADD8E6"
  9.    android:orientation="vertical"
  10.    tools:context=".MainActivity">
  11.  
  12.     <TextView
  13.        android:id="@+id/header"
  14.        android:layout_width="match_parent"
  15.        android:layout_height="wrap_content"
  16.        android:layout_margin="5dp"
  17.        android:text="@string/header"
  18.        android:textAlignment="center"
  19.        android:textSize="20sp"
  20.        app:layout_constraintBottom_toBottomOf="parent"
  21.        app:layout_constraintEnd_toEndOf="parent"
  22.        app:layout_constraintStart_toStartOf="parent"
  23.        app:layout_constraintTop_toTopOf="parent" />
  24.  
  25.     <TextView
  26.        android:id="@+id/header_subscript"
  27.        android:layout_width="match_parent"
  28.        android:layout_height="wrap_content"
  29.        android:layout_margin="5dp"
  30.        android:text="@string/author_text"
  31.        android:textAlignment="center" />
  32.  
  33.     <LinearLayout
  34.        android:id="@+id/washing_machine_section"
  35.        android:layout_width="match_parent"
  36.        android:layout_height="wrap_content"
  37.        android:orientation="horizontal">
  38.  
  39.         <ImageView
  40.            android:id="@+id/washing_machine_image"
  41.            android:layout_width="wrap_content"
  42.            android:layout_height="150dp"
  43.            android:layout_marginLeft="20dp"
  44.            android:layout_marginTop="0dp"
  45.            android:layout_marginRight="20dp"
  46.            android:layout_marginBottom="20dp"
  47.            android:layout_weight="1"
  48.            app:srcCompat="@drawable/pralka" />
  49.  
  50.         <LinearLayout
  51.            android:layout_width="match_parent"
  52.            android:layout_height="wrap_content"
  53.            android:layout_weight="1"
  54.            android:orientation="vertical">
  55.  
  56.             <TextView
  57.                android:id="@+id/washing_machine_header"
  58.                android:layout_width="match_parent"
  59.                android:layout_height="wrap_content"
  60.                android:text="@string/washing_machine_text"
  61.                android:textSize="20sp" />
  62.  
  63.  
  64.             <com.google.android.material.textfield.TextInputLayout
  65.                android:layout_width="match_parent"
  66.                android:layout_height="wrap_content"
  67.                android:textColor="#000080"
  68.                android:textColorHint="#000080"
  69.                >
  70.  
  71.                 <com.google.android.material.textfield.TextInputEditText
  72.                    android:id="@+id/program_input"
  73.                    android:layout_width="match_parent"
  74.                    android:layout_height="wrap_content"
  75.                    android:background="#87CEEB"
  76.                    android:hint="@string/wasching_machine_hint"
  77.                    android:textColor="#000080"
  78.                    android:textColorHint="#000080" />
  79.  
  80.             </com.google.android.material.textfield.TextInputLayout>
  81.  
  82.             <Button
  83.                android:id="@+id/washing_button"
  84.                android:layout_width="match_parent"
  85.                android:layout_height="wrap_content"
  86.                android:layout_margin="10dp"
  87.                android:backgroundTint="#4169E1"
  88.                android:text="@string/washing_button"
  89.                app:cornerRadius="5dp" />
  90.  
  91.             <TextView
  92.                android:id="@+id/washing_display"
  93.                android:layout_width="match_parent"
  94.                android:layout_height="wrap_content"
  95.                android:text="@string/washing_program" />
  96.         </LinearLayout>
  97.  
  98.     </LinearLayout>
  99.  
  100.     <LinearLayout
  101.        android:layout_width="match_parent"
  102.        android:layout_height="wrap_content"
  103.        android:orientation="horizontal">
  104.  
  105.         <ImageView
  106.            android:id="@+id/hoover_image"
  107.            android:layout_width="wrap_content"
  108.            android:layout_height="150dp"
  109.            android:layout_marginLeft="20dp"
  110.            android:layout_marginTop="0dp"
  111.            android:layout_marginRight="20dp"
  112.            android:layout_marginBottom="20dp"
  113.            android:layout_weight="1"
  114.            app:srcCompat="@drawable/odkurzacz" />
  115.  
  116.         <LinearLayout
  117.            android:layout_width="match_parent"
  118.            android:layout_height="match_parent"
  119.            android:layout_weight="1"
  120.            android:orientation="vertical">
  121.  
  122.             <TextView
  123.                android:id="@+id/hoover_header"
  124.                android:layout_width="match_parent"
  125.                android:layout_height="wrap_content"
  126.                android:text="@string/hoover"
  127.                android:textSize="20sp" />
  128.  
  129.             <Button
  130.                android:id="@+id/hoover_toggle"
  131.                android:layout_width="match_parent"
  132.                android:layout_height="wrap_content"
  133.                android:layout_margin="10dp"
  134.                android:backgroundTint="#4169E1"
  135.                android:text="@string/hoover_turn_on"
  136.                app:cornerRadius="5dp" />
  137.  
  138.             <TextView
  139.                android:id="@+id/hoover_state"
  140.                android:layout_width="match_parent"
  141.                android:layout_height="wrap_content"
  142.                android:text="@string/hoover_off" />
  143.  
  144.             <TextView
  145.                android:id="@+id/hoover_battery_info"
  146.                android:layout_width="match_parent"
  147.                android:layout_height="wrap_content"
  148.                android:text="@string/battery_status_charged" />
  149.         </LinearLayout>
  150.     </LinearLayout>
  151.  
  152. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement