0% found this document useful (0 votes)
28 views51 pages

Boarding Bliss

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views51 pages

Boarding Bliss

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 51

.

Republic of the Philippines


BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM

BOARDING BLISS

App Developer:
Name: Ceryl Mae Alingig
Name: France Neña Diana Gerzon
ANGELICA P. TEREC
Instructor

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 1 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM

Abstract

The "Boarding Bliss" is an Android-based mobile application designed to assist both students and
landlords in managing boarding house payments and communication. This app allows students to
monitor their payments and check whether they have paid or if there is any outstanding balance. The
app displays transaction details, including the amount, date of payment, and payment status.
Students can view their entire payment history and ensure that their financial obligations are properly
tracked. Through the Boarding House App, students can easily and efficiently manage their boarding
house payments, providing convenience and assurance regarding their financial transactions.
Meanwhile, landlords can sign up, register tenants, and track their payment history. The app allows
landlords to manage tenant information, including the ability to accept or reject tenants, and provides
them with exclusive access to update or delete tenant details. In case a tenant is unfamiliar with using
the app, the landlord can also fill out the payment method on their behalf. This feature ensures that
landlords have full control over tenant data and payment management, while students benefit from a
seamless way to monitor and manage their payments. The app improves organization,
communication, and payment tracking, benefiting both landlords and students in the boarding house
environment.

<?xml version="1.0" encoding="utf-8"?>


<manifest xmlns:android="http://schemas.android.com/apk/res/android"

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 2 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


xmlns:tools="http://schemas.android.com/tools">

<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Apartment"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
</activity>

<activity android:name=".LoginActivity" android:exported="true">


<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />


</intent-filter>
</activity>

<activity android:name=".RegisterActivty" android:exported="true">

</activity>
</application>

</manifest>

<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/material_dynamic_tertiary50"
>

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/bg"
android:layout_marginBottom="400dp"
android:scaleType="fitXY"
/>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:alpha="0.7"
/>

<LinearLayout
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 3 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="28dp"
android:gravity="center"
android:layout_above="@+id/card_view"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_bar_sign_in"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/white" />
</LinearLayout>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="BOARDING BLISS"
android:textColor="@color/white"
android:textSize="32sp"
android:textStyle="bold"
/>

</LinearLayout>

<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:cardCornerRadius="28dp"
android:layout_marginBottom="-20dp"
android:id="@+id/card_view"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="28dp"
android:background="@color/white"
>
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="32dp"
/>

<androidx.appcompat.widget.AppCompatTextView
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 4 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:text="Please sign in with your information"
android:alpha="0.7"
/>

<View
android:layout_width="wrap_content"
android:layout_height="30dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Email address"
android:textColor="@color/black"
android:alpha="0.7"
android:textStyle="bold"
/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:id="@+id/emailEt"
android:padding="12dp"
android:textColorHint="@color/transparent"
android:hint="Email Address"

/>

<View
android:layout_width="wrap_content"
android:layout_height="20dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password"

android:alpha="0.7"
android:textColor="@color/black"
android:textStyle="bold"

/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:id="@+id/passwordEt"
android:padding="12dp"
app:passwordToggleEnabled="true"
android:hint="Password"
android:textColorHint="@color/transparent"
/>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 5 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="60dp"

app:cornerRadius="32dp"
android:text="Sign In"
android:textColor="@color/white"
android:textStyle="bold"
android:backgroundTint="@color/material_dynamic_neutral40"
android:id="@+id/button"
/>
<View
android:layout_width="wrap_content"
android:layout_height="5dp"/>

<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="50dp"
app:cornerRadius="32dp"
android:text="Tenant View"
android:textColor="@color/white"
android:textStyle="bold"
android:backgroundTint="@color/material_dynamic_neutral40"
android:id="@+id/button_tenant"
/>
<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>

<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Create new account"
android:gravity="center"
android:textColor="@color/black"
android:alpha="0.7"
android:id="@+id/create_account"
/>
<View
android:layout_width="wrap_content"
android:layout_height="40dp"/>
</LinearLayout>

</androidx.cardview.widget.CardView>

</RelativeLayout>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 6 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM

<?xml version="1.0" encoding="utf-8"?>


<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:fitsSystemWindows="true"
tools:openDrawer="start"
android:background="@color/common_google_signin_btn_text_dark_default"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="56dp"
android:id="@+id/toolbar"
app:title="BOARDING BLISS"
android:elevation="4dp"
android:background="@color/material_dynamic_tertiary70"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
/>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment_container"
>

</FrameLayout>

</LinearLayout>

<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:itemTextColor="@color/material_dynamic_tertiary70"
app:menu="@menu/nav_menu" />

</androidx.drawerlayout.widget.DrawerLayout>

<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 7 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/material_dynamic_tertiary50"
>

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/logo"
android:layout_marginBottom="400dp"
android:scaleType="fitXY"
/>

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:alpha="0.7"
/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="28dp"
android:gravity="center"
android:layout_above="@+id/card_view"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_bar_sign_up"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/white" />
</LinearLayout>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="50dp"
android:text="BOARDING BLISS"
android:textColor="@color/white"
android:textSize="32sp"
android:textStyle="bold"
/>

</LinearLayout>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 8 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:cardCornerRadius="28dp"
android:layout_marginBottom="-20dp"
android:id="@+id/card_view"

>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="28dp"
android:background="@color/white"
>
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Welcome"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="32dp"
/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:text="Please sign up with your information"
android:alpha="0.7"
/>

<View
android:layout_width="wrap_content"
android:layout_height="20dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nickname"
android:textColor="@color/black"
android:alpha="0.7"
android:textStyle="bold"
/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:id="@+id/nameEt"
android:padding="12dp"
android:hint="Nickname"
android:textColorHint="@color/transparent"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 9 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


/>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Email address"
android:textColor="@color/black"
android:alpha="0.7"
android:textStyle="bold"
/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:id="@+id/emailEt"
android:padding="12dp"
android:hint="Email"
android:textColorHint="@color/transparent"
/>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Password"
android:textColor="@color/black"
android:alpha="0.7"
android:textStyle="bold"
/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
app:passwordToggleEnabled="true"
android:id="@+id/passwordEt"
android:padding="12dp"
android:textColorHint="@color/transparent"
android:hint="Password"
/>
<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Confirm password"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 10 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:textColor="@color/black"
android:alpha="0.7"
android:textStyle="bold"
/>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:id="@+id/confirmPassEt"
app:passwordToggleEnabled="true"
android:padding="12dp"
android:hint="Confirm Password"
android:textColorHint="@color/transparent"
/>
<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>
<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="60dp"

app:cornerRadius="32dp"
android:text="Sign Up"
android:textColor="@color/white"
android:id="@+id/button"
android:backgroundTint="@color/material_dynamic_neutral40"
/>
<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Already have an account?"
android:gravity="center"
android:textColor="@color/black"
android:alpha="0.7"
android:id="@+id/textRegister"
/>
<View
android:layout_width="wrap_content"
android:layout_height="10dp"/>
</LinearLayout>
</androidx.cardview.widget.CardView>

</RelativeLayout>

<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 11 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


tools:context=".fragments.DashboardFragment">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Dashboard Data"
android:layout_marginHorizontal="10dp"
android:textSize="32sp"
android:id="@+id/dashboard"
/>
<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:rowCount="3"
android:layout_below="@+id/dashboard"
>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="0"
android:layout_column="0"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="8"
android:textSize="42sp"
android:textStyle="bold"
android:textColor="@color/black"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TOTAL ROOMS"
android:textStyle="bold"
android:textAlignment="center"
android:textSize="16sp"
android:textColor="@color/black"
/>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 12 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="4 DECKS EACH ROOMS"
android:textStyle="bold"
android:textAlignment="center"
android:textSize="14sp"
android:textColor="@color/black"
android:layout_marginTop="5dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="0"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="42sp"
android:textColor="@color/black"
android:textStyle="bold"
android:id="@+id/text_rented_rooms"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RENDTED ROOMS"
android:textSize="16sp"
android:textStyle="bold"
android:textColor="@color/black"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 13 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="1"
android:layout_column="0"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="42sp"
android:id="@+id/text_rented_decks"
android:textStyle="bold"
android:textColor="@color/black"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RENTED DECKS"
android:textSize="16sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
</LinearLayout>

</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="1"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 14 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textSize="42sp"
android:textStyle="bold"
android:id="@+id/text_available_decks"
android:textColor="@color/black"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="AVAILABLE DECKS"
android:textSize="16sp"
android:textStyle="bold"
android:textColor="@color/black"
/>
</LinearLayout>

</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="2"
android:layout_column="0"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 15 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:textStyle="bold"
android:textSize="42sp"
android:textColor="@color/black"
android:id="@+id/text_all_tenants"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ALL TENANTS"
android:textStyle="bold"
android:textSize="16sp"
android:textColor="@color/black"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="2"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0"
android:textColor="@color/black"
android:textStyle="bold"
android:id="@+id/text_total_income"
android:textSize="42sp"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Month"
android:textSize="16sp"
android:textColor="@color/black"
android:id="@+id/dashboard_month"
android:textStyle="bold"
/>
<TextView
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 16 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MONTHLY INCOME"
android:textSize="16sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

</GridLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_bar_dashboard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/black" />
</LinearLayout>

</RelativeLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.Password"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginHorizontal="10dp"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Secret Key for Admin only"
android:textSize="24sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
<com.google.android.material.textfield.TextInputLayout
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 17 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Secret Key"
android:inputType="number"
android:textSize="16sp"
android:textColor="@color/black"
android:id="@+id/input_secret_key"
android:maxLength="4" />

</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_submit"
android:text="Submit"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
android:textSize="16sp"
android:textStyle="bold"
android:textColor="@color/white"
/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.Password"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginHorizontal="10dp"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Secret Key for Admin only"
android:textSize="24sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
<com.google.android.material.textfield.TextInputLayout
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 18 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Secret Key"
android:inputType="number"
android:textSize="16sp"
android:textColor="@color/black"
android:id="@+id/input_secret_key"
android:maxLength="4" />

</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_submit"
android:text="Submit"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
android:textSize="16sp"
android:textStyle="bold"
android:textColor="@color/white"
/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.PaymentManagement">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="PAYMENT MANAGEMENT"
android:layout_marginHorizontal="10dp"
android:textStyle="bold"
android:textSize="32sp"
android:id="@+id/textPayment"
app:layout_constraintTop_toTopOf="parent"
android:textColor="@color/black"
/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/textPayment"
android:orientation="vertical"
android:layout_marginTop="15dp"
android:layout_marginHorizontal="10dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 19 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


>

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Tenant ID"
android:inputType="number"
android:id="@+id/input_tenant_id"
android:maxLength="4"

/>
</com.google.android.material.textfield.TextInputLayout>
<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Room No"
android:inputType="number"
android:maxLength="2"
android:id="@+id/input_payment_tenant_room_no"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Tenant Name"
android:id="@+id/input_payment_tenant_name"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 20 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Amount"
android:inputType="number"
android:id="@+id/input_payment_amount"
android:maxLength="4"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="15dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Date:"
android:textSize="24sp"
android:textColor="@color/black"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nov 12, 2024"
android:id="@+id/text_payment_date"
android:textSize="24sp"
android:layout_marginHorizontal="10dp"
android:textColor="@color/black"
/>

<com.google.android.material.button.MaterialButton
android:id="@+id/button_edit_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Edit Date"
android:textColor="@color/white"
android:textSize="14sp"
android:gravity="center"
app:cornerRadius="8dp"
android:backgroundTint="@color/material_dynamic_neutral60"
/>
</LinearLayout>

<View
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 21 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="wrap_content"
android:layout_height="20dp"/>

<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OK"
android:id="@+id/button_payment"
android:textColor="@color/white"
app:cornerRadius="8dp"
android:textSize="14sp"
android:gravity="center"
android:backgroundTint="@color/material_dynamic_neutral_variant60"
/>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_payment_management"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/black" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.RegisterTenant"
android:padding="10dp"
>

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/baseline_exit_to_app_24"
app:layout_constraintTop_toTopOf="parent"
android:id="@+id/exit_register_tenant"
app:layout_constraintEnd_toEndOf="parent"

/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="REGISTER TENANT"
android:layout_marginHorizontal="10dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 22 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:textStyle="bold"
android:textSize="24sp"
android:layout_marginTop="10dp"
android:id="@+id/textPayment"
app:layout_constraintTop_toBottomOf="@+id/exit_register_tenant"
android:textColor="@color/black"
/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@+id/textPayment"
android:orientation="vertical"

android:layout_marginHorizontal="10dp"
>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Room:"
android:textStyle="bold"
android:textSize="24sp"
android:textColor="@color/black"
app:layout_constraintTop_toTopOf="parent"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:id="@+id/text_room_no"
android:layout_marginHorizontal="10dp"
android:textStyle="bold"
android:textColor="@color/black"
android:textSize="24sp"
app:layout_constraintTop_toTopOf="parent"
/>

</LinearLayout>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:helperText="*Please remember your tenant ID"
app:helperTextTextColor="@color/blue"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 23 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Tenant ID"
android:id="@+id/input_tenant_id"
android:textColor="@color/black"
android:maxLength="4"
android:inputType="number"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="15dp"
/>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="NAME"
android:textColor="@color/black"
android:id="@+id/input_tenant_name"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="CONTACT NO"
android:id="@+id/input_tenant_contact_no"
android:textColor="@color/black"
android:inputType="number"
android:maxLength="11"

/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 24 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="EMERGENCY CONTACT PERSON"
android:id="@+id/input_tenant_contact_person"
android:textColor="@color/black"
/>
</com.google.android.material.textfield.TextInputLayout>

<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="EMERGENCY CONTACT NO"
android:id="@+id/input_tenant_emergency_no"
android:inputType="number"
android:maxLength="11"
android:textColor="@color/black"
/>
</com.google.android.material.textfield.TextInputLayout>
<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Date:"
android:textSize="18sp"

android:textColor="@color/black"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nov 12, 2024"
android:id="@+id/text_register_tenant_date"
android:textSize="18sp"
android:layout_marginHorizontal="10dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 25 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:textColor="@color/black"
/>

</LinearLayout>
<com.google.android.material.button.MaterialButton
android:id="@+id/button_edit_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Edit Date"
android:textColor="@color/white"
app:cornerRadius="8dp"
android:textSize="14sp"
android:gravity="center"
android:backgroundTint="@color/material_dynamic_neutral60"
/>
<View
android:layout_width="wrap_content"
android:layout_height="10dp"
/>
<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="REGISTER"
android:id="@+id/btn_register_tenant"
android:textColor="@color/white"
android:textSize="14sp"
android:gravity="center"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
/>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_register_tenant"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/black" />
</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.RoomsInformation">
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 26 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOMS INFORMATION"
android:layout_marginHorizontal="10dp"
android:textSize="32sp"
android:id="@+id/dashboard"
android:textColor="@color/black"
/>

<GridLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnCount="2"
android:rowCount="4"
android:layout_below="@+id/dashboard"
>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="0"
android:layout_column="0"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 1"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 27 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_1"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>

<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="REGISTER"
android:id="@+id/button_register_1"
android:textSize="16sp"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>

</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="0"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 2"
android:textSize="32sp"
/>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 28 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_2"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>

<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="REGISTER"
android:textSize="16sp"
android:id="@+id/button_register_2"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
android:padding="5dp"
app:cornerRadius="8dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>

</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="1"
android:layout_rowWeight="1"
android:layout_column="0"
android:layout_columnWeight="1"
android:layout_gravity="fill"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:gravity="center"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 29 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 3"
android:textSize="32sp" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_3"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>

<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
android:id="@+id/button_register_3"
android:padding="5dp"
android:text="REGISTER"
android:textColor="@color/white"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>

</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="1"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
android:backgroundTint="@color/transparent"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 30 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 4"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_4"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_register_4"
android:text="REGISTER"
android:textSize="16sp"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
app:cornerRadius="8dp"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="2"
android:layout_column="0"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 31 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 5"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_5"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="REGISTER"
android:id="@+id/button_register_5"
android:textSize="16sp"
app:cornerRadius="8dp"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 32 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="2"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
android:backgroundTint="@color/transparent"
app:cardElevation="8dp"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 6"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_6"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="REGISTER"
app:cornerRadius="8dp"
android:textSize="16sp"
android:id="@+id/button_register_6"
android:textColor="@color/white"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 33 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:backgroundTint="@color/material_dynamic_neutral60"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="3"
android:layout_column="0"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 7"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_7"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 34 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_height="wrap_content"
android:text="REGISTER"
android:textSize="16sp"
app:cornerRadius="8dp"
android:id="@+id/button_register_7"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>

<androidx.cardview.widget.CardView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_row="3"
android:layout_column="1"
android:layout_gravity="fill"
android:layout_rowWeight="1"
android:layout_columnWeight="1"
android:layout_margin="8dp"
app:cardCornerRadius="8dp"
app:cardElevation="8dp"
android:backgroundTint="@color/transparent"

>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center"
android:layout_gravity="center_vertical|center_horizontal"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM 8"
android:textSize="32sp"
/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="1"
android:textSize="24sp"
android:id="@+id/text_room_no_8"
/>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 35 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="/4"
android:textSize="24sp" />
</LinearLayout>
<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="REGISTER"
android:id="@+id/button_register_8"
app:cornerRadius="8dp"
android:textSize="16sp"
android:textColor="@color/white"
android:backgroundTint="@color/material_dynamic_neutral60"
android:padding="5dp"
android:textStyle="bold"
android:layout_marginTop="10dp"
/>
</LinearLayout>
</androidx.cardview.widget.CardView>
</GridLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp">

<ProgressBar
android:id="@+id/progress_bar_rooms_information"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminateTint="@color/black" />
</LinearLayout>

</RelativeLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.TenantInfo">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginHorizontal="10dp"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 36 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:src="@drawable/baseline_exit_to_app_24"
android:layout_gravity="end"
android:id="@+id/button_exit"
android:layout_marginBottom="30dp"
android:layout_marginTop="15dp"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TENANT INFORMATION"
app:layout_constraintTop_toTopOf="parent"
android:textSize="32sp"
android:textColor="@color/black"
/>
<Space
android:layout_width="wrap_content"
android:layout_height="50dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ID:"
android:textSize="16sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>

<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text_tenant_Id"
android:text=""
android:textColor="@color/black"
android:textSize="16sp"
/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 37 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ROOM NO:"
android:textColor="@color/black"
android:textSize="16sp"
android:textStyle="bold"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text_tenant_room_no"
android:text=""
android:textColor="@color/black"
android:textSize="16sp"
/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="NAME:"
android:textSize="16sp"
android:textColor="@color/black"
android:textStyle="bold"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:id="@+id/text_tenant_name"
android:textColor="@color/black"
android:textSize="16sp"
/>

</LinearLayout>

<Space
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 38 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="wrap_content"
android:layout_height="10dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CONTACT"
android:textColor="@color/black"
android:textSize="16sp"
android:textStyle="bold"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textColor="@color/black"
android:id="@+id/text_tenant_contact_no"
android:textSize="16sp"
/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="START DATE"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="16sp"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/text_tenant_start_date"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 39 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:text=""
android:textColor="@color/black"
android:textSize="16sp"
/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="EMERGENCY CONTACT"
android:textColor="@color/black"
android:textStyle="bold"
android:textSize="16sp"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="16sp"
android:id="@+id/text_emergency_contact"
android:textColor="@color/black"
/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="EMERGENCY CONTACT NO:"
android:textStyle="bold"
android:textSize="16sp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 40 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:textColor="@color/black"
/>
<Space
android:layout_width="10dp"
android:layout_height="wrap_content"/>
<com.google.android.material.textview.MaterialTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="16sp"
android:textColor="@color/black"
android:id="@+id/text_emergency_contact_no"

/>

</LinearLayout>

<Space
android:layout_width="wrap_content"
android:layout_height="10dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<com.google.android.material.button.MaterialButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="PAYMENT HISTORY"
android:backgroundTint="@color/material_dynamic_neutral60"
android:textColor="@color/white"
android:textSize="16sp"
android:id="@+id/button_payment_history"
android:allowClickWhenDisabled="false"
/>
</LinearLayout>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/progress_bar_tenant_infor"

android:indeterminateTint="@color/black"
/>
</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 41 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".fragments.TenantInformation">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginHorizontal="10dp"
>

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TENANTS INFORMATION"
android:textSize="32sp"
android:textAlignment="center"
android:textColor="@color/black"
/>
<!-- <com.google.android.material.card.MaterialCardView-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- app:cardCornerRadius="8dp"-->
<!-- app:cardElevation="8dp"-->
<!-- app:cardUseCompatPadding="true"-->
<!-- android:background="@color/blue"-->
<!-- >-->
<!-- <androidx.appcompat.widget.SearchView-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- app:queryHint="Search..."-->
<!-- app:iconifiedByDefault="false"-->
<!-- />-->
<!-- </com.google.android.material.card.MaterialCardView>-->

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Tenant ID"
android:inputType="number"
android:id="@+id/input_tenant_id"
android:maxLength="4"
/>
</com.google.android.material.textfield.TextInputLayout>
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 42 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_marginBottom="8dp"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Tenant Name"
android:id="@+id/input_tenant_name"
/>
</com.google.android.material.textfield.TextInputLayout>

<com.google.android.material.button.MaterialButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search"
android:id="@+id/btn_search_tenant"
app:cornerRadius="8dp"
android:textSize="16sp"
android:backgroundTint="@color/material_dynamic_neutral60"
/>

<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>

<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="1dp">

<LinearLayout
android:layout_width="40dp"
android:layout_height="match_parent"

android:orientation="vertical"
android:background="@drawable/cell_border">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="10dp"
android:text="ID"
android:textSize="16sp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black"
android:textStyle="bold"
/>

</LinearLayout>

<LinearLayout
android:layout_width="80dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/cell_border"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 43 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="10dp"
android:text="NAME"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black"
android:textSize="16sp"
android:textStyle="bold" />
</LinearLayout>

<LinearLayout
android:layout_width="80dp"
android:layout_height="match_parent"

android:orientation="vertical"
android:background="@drawable/cell_border">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="10dp"
android:text="CN#"
android:textSize="16sp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black"
android:textStyle="bold"
/>

</LinearLayout>

<LinearLayout
android:layout_width="80dp"
android:layout_height="match_parent"

android:orientation="vertical"
android:background="@drawable/cell_border">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="10dp"
android:text="STATUS"
android:textSize="16sp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black"
android:textStyle="bold"
/>

</LinearLayout>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 44 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="1"
android:background="@drawable/cell_border">

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:layout_gravity="center"
android:text="ACTION"
android:textSize="14sp"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/black"
android:textStyle="bold"

/>

</LinearLayout>

</TableRow>
<androidx.recyclerview.widget.RecyclerView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/recycler_view_tenant_information"
tools:listitem="@layout/list_items_information"
/>
</TableLayout>

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/progress_bar_tenant_information"
android:indeterminateTint="@color/black"
/>
</LinearLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 45 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
android:orientation="horizontal"
app:layout_constraintStart_toStartOf="parent"
>

<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<LinearLayout
android:layout_width="40dp"
android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:orientation="horizontal">

<TextView
android:id="@+id/text_tenant_information_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:textStyle="bold"
android:text="4444"
android:textColor="@android:color/black"
android:textSize="12sp" />
</LinearLayout>

<LinearLayout
android:layout_width="80dp"
android:layout_height="wrap_content"
android:background="@drawable/cell_border"
android:orientation="horizontal">

<TextView
android:id="@+id/text_tenant_information_name"

android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="France Gerzon"
android:textColor="@android:color/black"
android:textSize="14sp" />
</LinearLayout>

<LinearLayout
android:layout_width="80dp"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 46 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:orientation="horizontal">

<TextView
android:id="@+id/text_tenant_information_contact"

android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="09123456789"
android:textColor="@android:color/black"
android:textSize="16sp" />
</LinearLayout>

<LinearLayout
android:layout_width="80dp"
android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:orientation="horizontal">
<TextView
android:id="@+id/text_tenant_information_status"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="NOT PAID"
android:textColor="@android:color/black"
android:textSize="14sp" />

</LinearLayout>

<androidx.appcompat.widget.AppCompatImageButton
android:id="@+id/button_delete_tenant_information"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:padding="24dp"
android:layout_weight="1"
android:src="@drawable/baseline_delete_24"

android:background="@drawable/cell_border"
android:contentDescription="delete"
/>
</TableRow>

</TableLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 47 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
>

<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"

app:layout_constraintTop_toTopOf="parent"
android:orientation="horizontal"
app:layout_constraintStart_toStartOf="parent"
>

<TableRow
android:id="@+id/tableRow1"
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
android:id="@+id/text_month_history"
android:layout_width="70dp"
android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="NOV"
android:textColor="@android:color/black"
android:textSize="16dp" />

<LinearLayout
android:layout_width="90dp"
android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:orientation="horizontal">

<TextView
android:id="@+id/text_amount"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="2,000"
android:textColor="@android:color/black"
android:textSize="16sp" />

</LinearLayout>

<LinearLayout
android:layout_width="90dp"
android:layout_height="match_parent"
android:background="@drawable/cell_border"

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 48 of 51


.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:orientation="horizontal">

<TextView
android:id="@+id/text_status"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="@drawable/cell_border"
android:gravity="center"
android:padding="5dp"
android:text="NOT PAID"
android:textColor="@android:color/black"
android:textSize="16sp" />

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/cell_border"
android:layout_weight="1"
android:orientation="horizontal">

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/cell_border"
android:id="@+id/text_date_transaction"
android:gravity="center"
android:padding="5dp"
android:text="Oct-18-2024"
android:textColor="@android:color/black"
android:textSize="16sp" />

</LinearLayout>

</TableRow>

</TableLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<?xml version="1.0" encoding="utf-8"?>


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="176dp"
android:background="@color/material_dynamic_tertiary60"
android:gravity="bottom"
android:padding="16dp"
android:orientation="vertical"
>

<TextView
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 49 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="User"
android:id="@+id/text_nickname"
android:textSize="20dp"
android:textColor="@color/black"
/>
</LinearLayout>

<?xml version="1.0" encoding="utf-8"?>


<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:showIn="navigation_view"
>

<group
android:checkableBehavior="single"
>

<item
android:title="Dashboard Data"
android:id="@+id/nav_dashboard"
/>

<item
android:title="Rooms Information"
android:id="@+id/nav_rooms"
/>

<item
android:title="Tenants Information"
android:id="@+id/nav_tenant"
/>

<item
android:title="Payment Management"
android:id="@+id/nav_payment"
/>

<!-- <item-->
<!-- android:title="Register Tenant"-->
<!-- android:id="@+id/nav_register_tenant"-->
<!-- />-->
</group>

<item android:title="">
<menu>
<item android:id="@+id/nav_logout" android:title="Logout"/>
</menu>
</item>
</menu>

<?xml version="1.0" encoding="utf-8"?><!--


Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older that API 31
F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 50 of 51
.
Republic of the Philippines
BOHOL ISLAND STATE UNIVERSITY
Magsija, Balilihan 6342, Bohol, Philippines
Office of the Director of Instruction
Balance I Integrity I Stewardship I Uprightness

ELEC 3: APPLICATION DEVELOPMENT USING ANDROID PLATFORM


See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

<?xml version="1.0" encoding="utf-8"?><!--


Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

F-AQA-INS-001 | Rev. 2 | 07/01/24 | Page 51 of 51

You might also like