Advertisement
NexGenration

Untitled

Nov 2nd, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.48 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:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:orientation="vertical"
  8.    android:paddingLeft="16dp"
  9.    android:paddingRight="16dp">
  10.  
  11.  
  12.     <Switch
  13.        android:id="@+id/switch1"
  14.        android:layout_width="match_parent"
  15.        android:layout_height="wrap_content"
  16.        android:text="@string/profit" />
  17.  
  18.     <Switch
  19.        android:id="@+id/switch2"
  20.        android:layout_width="match_parent"
  21.        android:layout_height="wrap_content"
  22.        android:text="@string/chain" />
  23.  
  24.     <Switch
  25.        android:id="@+id/switch3"
  26.        android:layout_width="match_parent"
  27.        android:layout_height="wrap_content"
  28.        android:text="@string/itemNames" />
  29.  
  30.     <LinearLayout
  31.        android:layout_width="match_parent"
  32.        android:layout_height="296dp"
  33.        android:orientation="horizontal">
  34.  
  35.         <LinearLayout
  36.            android:layout_width="match_parent"
  37.            android:layout_height="match_parent"
  38.            android:orientation="vertical">
  39.  
  40.         </LinearLayout>
  41.  
  42.         <LinearLayout
  43.            android:layout_width="match_parent"
  44.            android:layout_height="match_parent"
  45.            android:orientation="vertical">
  46.  
  47.         </LinearLayout>
  48.  
  49.         <LinearLayout
  50.            android:layout_width="match_parent"
  51.            android:layout_height="match_parent"
  52.            android:orientation="vertical">
  53.  
  54.             <ImageButton
  55.                android:id="@+id/imageButton3"
  56.                android:layout_width="wrap_content"
  57.                android:layout_height="wrap_content"
  58.                app:srcCompat="@drawable/torch" />
  59.         </LinearLayout>
  60.     </LinearLayout>
  61.  
  62.     <TextView
  63.        android:id="@+id/textView3"
  64.        android:layout_width="match_parent"
  65.        android:layout_height="wrap_content"
  66.        android:text="@string/resultAmount" />
  67.  
  68.     <ImageButton
  69.        android:id="@+id/imageButton1"
  70.        android:layout_width="wrap_content"
  71.        android:layout_height="wrap_content"
  72.        app:srcCompat="@drawable/gel" />
  73.  
  74.  
  75.     <TextView
  76.        android:id="@+id/textView1"
  77.        android:layout_width="match_parent"
  78.        android:layout_height="wrap_content"
  79.        android:text="@string/ingredientAmount1"
  80.        tools:layout_centerHorizontal="false" />
  81.  
  82.  
  83.     <ImageButton
  84.        android:id="@+id/imageButton2"
  85.        android:layout_width="wrap_content"
  86.        android:layout_height="wrap_content"
  87.        app:srcCompat="@drawable/wood" />
  88.  
  89.     <TextView
  90.        android:id="@+id/textView2"
  91.        android:layout_width="wrap_content"
  92.        android:layout_height="wrap_content"
  93.        android:text="@string/ingredientAmount2" />
  94.  
  95.     <Button
  96.        android:id="@+id/button1"
  97.        android:layout_width="wrap_content"
  98.        android:layout_height="wrap_content"
  99.        android:text="@string/temp_button" />
  100.  
  101.     <Button
  102.        android:id="@+id/button2"
  103.        android:layout_width="wrap_content"
  104.        android:layout_height="wrap_content"
  105.        android:text="@string/temp_button" />
  106.  
  107.     <Button
  108.        android:id="@+id/button3"
  109.        android:layout_width="wrap_content"
  110.        android:layout_height="wrap_content"
  111.        android:text="@string/temp_button" />
  112.  
  113. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement