Advertisement
mmayoub

מחשבון BMI, עיצוב מסך

Sep 17th, 2022
1,043
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.20 KB | Software | 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:layout_margin="16dp"
  8.    android:orientation="vertical"
  9.    tools:context=".MainActivity">
  10.  
  11.     <TextView
  12.        android:id="@+id/textView2"
  13.        android:layout_width="match_parent"
  14.        android:layout_height="wrap_content"
  15.        android:layout_margin="16dp"
  16.        android:background="#F57F17"
  17.        android:text="My BMI Calculator"
  18.        android:textAlignment="center"
  19.        android:textColor="#004D40"
  20.        android:textSize="34sp"
  21.        android:textStyle="bold" />
  22.  
  23.     <EditText
  24.        android:id="@+id/etWeight"
  25.        android:layout_width="match_parent"
  26.        android:layout_height="wrap_content"
  27.        android:layout_margin="16dp"
  28.        android:ems="10"
  29.        android:hint="Weight (kg)"
  30.        android:inputType="numberDecimal"
  31.        android:minHeight="48dp"
  32.        android:textAlignment="center" />
  33.  
  34.     <EditText
  35.        android:id="@+id/etHight"
  36.        android:layout_width="match_parent"
  37.        android:layout_height="wrap_content"
  38.        android:layout_margin="16dp"
  39.        android:ems="10"
  40.        android:hint="Hight (m)"
  41.        android:inputType="numberDecimal"
  42.        android:minHeight="48dp"
  43.        android:textAlignment="center" />
  44.  
  45.     <Button
  46.        android:id="@+id/btnCalculate"
  47.        android:layout_width="match_parent"
  48.        android:layout_height="wrap_content"
  49.        android:layout_margin="16dp"
  50.        android:onClick="calculateBmi"
  51.        android:text="Calculate"
  52.        android:textSize="20sp"
  53.        android:textStyle="bold" />
  54.  
  55.     <TextView
  56.        android:id="@+id/tvResult"
  57.        android:layout_width="match_parent"
  58.        android:layout_height="wrap_content"
  59.        android:layout_margin="16dp"
  60.        android:singleLine="false"
  61.        android:text="TextView"
  62.        android:textAlignment="center"
  63.        android:textColor="#311B92"
  64.        android:textSize="20sp" />
  65. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement