Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

A lab report conveys the aim, methods, results, and conclusions of a scientific experiment, Schemes and Mind Maps of Mobile Computing

A lab report conveys the aim, methods, results, and conclusions of a scientific experiment. The main purpose of a lab report is to demonstrate your understanding of the scientific method by performing and evaluating a hands-on lab experiment. This type of assignment is usually shorter than a research paper.

Typology: Schemes and Mind Maps

2019/2020

Uploaded on 11/16/2022

dna-barath
dna-barath 🇮🇳

5 documents

1 / 14

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
BARATH KUMAR V
20BCR7107
VIT-AP UNIVERSITY, ANDHRA PRADESH
Lab Sheet 4 : INTENTS
Academic year: 2021-2022 Branch/ Class: B.Tech
Semester: Fall Date: 04-10-2021
Faculty Name: Dr.N.Anupama School: SCOPE
NAME: BARATH KUMAR V REGNO:20BCR7107
Design an App that prints 5 random numbers of cards(1 to 13)
when select cards button is pressed, on clicking sort button, these
numbers need to send to second activity and sort and display.
When the reply button is pressed, the sum of the cards need to be
returned back to the MainActivity.
CODE:
Activity Main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Play Cards"
android:textColor="@color/black"
android:textSize="50dp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
pf3
pf4
pf5
pf8
pf9
pfa
pfd
pfe

Partial preview of the text

Download A lab report conveys the aim, methods, results, and conclusions of a scientific experiment and more Schemes and Mind Maps Mobile Computing in PDF only on Docsity!

20BCR

VIT-AP UNIVERSITY, ANDHRA PRADESH

Lab Sheet 4 : INTENTS

Academic year: 2021 - 2022 Branch/ Class: B.Tech Semester: Fall Date: 04 - 10 - 2021 Faculty Name: Dr.N.Anupama School: SCOPE NAME: BARATH KUMAR V REGNO:20BCR

Design an App that prints 5 random numbers of cards(1 to 13)

when select cards button is pressed, on clicking sort button, these

numbers need to send to second activity and sort and display.

When the reply button is pressed, the sum of the cards need to be

returned back to the MainActivity.

CODE:

Activity Main.xml

20BCR <EditText android:id="@+id/editText3" android:layout_width="60dp" android:layout_height="wrap_content" android:layout_marginStart="10dp" android:layout_marginTop="24dp" android:editable="false" android:gravity="center" android:text="" android:textColor="@color/black" android:textSize="20dp" android:textStyle="bold" app:layout_constraintBottom_toBottomOf="@+id/editText2" app:layout_constraintStart_toEndOf="@+id/editText2"

20BCR app:layout_constraintTop_toBottomOf="@+id/editText1" />