Advertisement
mmayoub

my first application: layout file - activity_main.xml.xml

May 3rd, 2023
1,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.26 KB | Source Code | 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.    tools:context=".MainActivity">
  9.  
  10.     <TextView
  11.        android:id="@+id/textView"
  12.        android:layout_width="match_parent"
  13.        android:layout_height="wrap_content"
  14.        android:text="Try answer some questions"
  15.        android:textAlignment="textStart"
  16.        android:textSize="24sp"
  17.        android:textStyle="bold" />
  18.  
  19.     <TextView
  20.        android:id="@+id/tvScore"
  21.        android:layout_width="wrap_content"
  22.        android:layout_height="wrap_content"
  23.        android:layout_gravity="end"
  24.        android:layout_marginTop="16dp"
  25.        android:layout_marginEnd="16dp"
  26.        android:background="#FFEB3B"
  27.        android:text="Score: 0"
  28.        android:textAlignment="center"
  29.        android:textColor="#EB3131"
  30.        android:textSize="34sp"
  31.        android:textStyle="bold" />
  32.  
  33.     <TextView
  34.        android:id="@+id/tvQuestion"
  35.        android:layout_width="wrap_content"
  36.        android:layout_height="wrap_content"
  37.        android:layout_gravity="center"
  38.        android:layout_marginTop="16dp"
  39.        android:background="#DDF6C0"
  40.        android:text="TextView"
  41.        android:textAlignment="center"
  42.        android:textSize="48sp"
  43.        android:textStyle="bold" />
  44.  
  45.     <RadioGroup
  46.        android:id="@+id/rgOptions"
  47.        android:layout_width="match_parent"
  48.        android:layout_height="wrap_content"
  49.        android:layout_marginTop="16dp">
  50.  
  51.         <RadioButton
  52.            android:id="@+id/rbtn1"
  53.            android:layout_width="match_parent"
  54.            android:layout_height="wrap_content"
  55.            android:layout_marginStart="16dp"
  56.            android:text="RadioButton"
  57.            android:textSize="24sp" />
  58.  
  59.         <RadioButton
  60.            android:id="@+id/rbtn2"
  61.            android:layout_width="match_parent"
  62.            android:layout_height="wrap_content"
  63.            android:layout_marginStart="16dp"
  64.            android:text="RadioButton"
  65.            android:textSize="24sp" />
  66.  
  67.         <RadioButton
  68.            android:id="@+id/rbtn3"
  69.            android:layout_width="match_parent"
  70.            android:layout_height="wrap_content"
  71.            android:layout_marginStart="16dp"
  72.            android:text="RadioButton"
  73.            android:textSize="24sp" />
  74.  
  75.     </RadioGroup>
  76.  
  77.     <Button
  78.        android:id="@+id/btnCheck"
  79.        android:layout_width="match_parent"
  80.        android:layout_height="wrap_content"
  81.        android:layout_margin="16dp"
  82.        android:text="check my answer" />
  83.  
  84.     <TextView
  85.        android:id="@+id/textView2"
  86.        android:layout_width="match_parent"
  87.        android:layout_height="wrap_content"
  88.        android:layout_weight="1" />
  89.  
  90.     <Button
  91.        android:id="@+id/btnStartAgain"
  92.        android:layout_width="wrap_content"
  93.        android:layout_height="wrap_content"
  94.        android:layout_gravity="center"
  95.        android:layout_margin="16dp"
  96.        android:text="Start again" />
  97.  
  98. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement