Development of Information Dissemination Platform by Integrating Web and Android Technologies
Development of Information Dissemination Platform by Integrating Web and Android Technologies
net/publication/314403231
CITATIONS READS
0 429
3 authors, including:
Mariam Rehman
Lahore College for Women University
31 PUBLICATIONS 225 CITATIONS
SEE PROFILE
Some of the authors of this publication are also working on these related projects:
All content following this page was uploaded by Maria Anjum on 09 March 2017.
Keywords: Content Management System, Mobile Widget, Android, Web Application, Admission Information Delivery
July-August
3790 ISSN 1013-5316;CODEN: SINTE 8 Sci.Int.(Lahore),28(4),3789-3794,2016
information in a relatively brief time period with low cost to
researchers.
The pre-experimental survey addressed two purposes. The
first purpose was to examine the perception and need
requirements of selected samples regarding the improvement
and flaws of the existing admission system deployed in the
universities. The second purpose was to collect data from
students regarding their preferred way of receiving admission
information besides the current way of receiving information
by visiting university campuses.
The post-experimental survey was to verify that the
developed system had fulfilled user needs. The pre-
experiment survey instrument was divided into three sections.
In the first section, demographic information was collected.
In the second section, questions were asked about mobile and
web technologies as a tool to provide information at to What
were the problems faced by students while taking admission
in universities. What were the lacking features in the existing
system that could be provided through technology. Also
would an integrated solution of mobile and web technologies
like the one proposed in this research be a better option.
A total of 31 responses were collected from pre-experimental
survey. The respondents were largely between the age group
of 17-20 years. In terms of gender, 42% respondents were
males and 58% were females. The qualification of
respondents largely fell under the category of under-
graduates.
In the survey, it was asked to explain all possible ways
adopted by respondents, while taking admission in their
degree programs. 39.3% of the participants used websites to
get information about the admission criteria; 28.6% preferred
to visit university campus; 28.6% of the participants
consulted newspapers; 3.6% used mobile applications and
60.7% respondents had to ask around from their friends or
relatives.
The statistical data revealed that in terms of technology use,
39.3% consulted websites, and rest relied on words of mouth,
and manual system. A very little percentage used mobile to
access information because there was no such mobile
application available. In an answer to a question was that
Figure 1: Research Design 60% people agreed that they needed a mobile application for
through admission process. The findings of this survey were getting admission updates while 40% said they need a
used to design system architecture for both web and mobile website for the same purpose.
applications. Prototypes of applications were presented to the When asked which device and type of mobile they used, 22%
students of selected universities and their responses were reported simple mobile, 35% used smart phones and rest had
collected after they performed various tasks in both the laptop or desktop PC facility. From these results it was
applications. Both applications were developed by employing evident that a use of a combination of technology would be a
the latest technologies. The developed applications were better solution to accommodate users of smart phones, and
evaluated by conducting usability survey. A five point Likert computer systems. Therefore, we adopted an integrated
scale was used to record users’ agreement against usability solution to facilitate both types of users. Also, mobile users
attributes which included effectiveness, efficiency, ease of were largely using android technology, therefore in our
use, learnability, and memorability of the system. application we focused on the same technology.
The stratified random sampling method was adopted to The respondents were further asked to share their experiences
collect data from the students of the selected universities, of taking admission in the universities of other cities. The
who wanted to share their admission procedure experience in responses collected from these questions helped to identify
the current institute and were willing to provide their features for the proposed application. One respondent shared
responses on the existing admission information system. The experience as ―The first and most hectic step is to track down
pre and post experimental survey was carried out through the admissions schedule of all favored universities.” Another
mailed surveys which was extremely efficient in providing respondent said ―After getting admission dates, it’s a vicious
cycle of paying multiple visits to every campus, first to
July-August
Sci.Int.(Lahore),28(4),3789-3794,2016 ISSN 1013-5316;CODEN: SINTE 8 3791
receive forms, then gather required documents, a slight By considering these concerns, the research aimed to
mistake can cause lot of rework and more visits, and then facilitate prospective students in receiving accurate and
going to submit them and give the entry test if applicable.” timely university admission information through an
The problems highlighted by respondents regarding integrated platform consisting of web and mobile
admission system in pre-experiment survey are listed below. applications. The platform was named as NewzNinja whose
• The information about admission process provided on web application is available online at www.newzninja.com.
university websites or by the administration office was The platform architecture is shown in Figure 2.
incomplete or unclear that caused prospective students to
make mistakes in their admission forms.
• Due to incomplete information of admission process
prospective students had to travel back and forth between
cities to have their documents completed and submitted.
• Had to wait in long queues in universities days leading to
the admission deadline. This caused prospective students to
stay away from home town for days and to pay additional
expenses for accommodation.
It was asked what type of information they would like to
receive if admission information was provided through
websites and mobile application. The applicants responded by
providing their suggestions such as the application should be
easily accessible, information should be provided about
opening and closing dates, criteria to get admission, office
timings, university map and routes, degree programs,
university achievements and ranking, merits lists, entry test
information, and online submission of admission form and
fee submission.
From pre-experiment survey, following features were
identified to develop an integrated platform discussed in this Figure 2: NewzNinja Platform Architecture
research to serve the needs of prospective students.
a) To ensure availability of university admission information The data was updated at NewzNinja server where application
on website and mobile application. schema was available. The information stored in database at
b) Availability of University route map on both applications. server side was displayed on the web interface by connecting
c) List of documents needed for admission and office MYSQL database with website.
timings. The information available on the website was also made
d) Official website links and information from newspaper. available on the android widget application. For this, RSS
This need was not identified from the survey however, we feed was used to send data to mobile application. XML web
incorporated this feature to increase the reliability of the service was parsed to extract news from the website. A
information provided through our proposed platform. method was implemented that referenced the website, created
local view, parsed the fetched news into titles through
RESULTS AND DISCUSSION .getName(). The following code was executed in mobile
A pre-experiment survey was conducted with students application as an asynchronous task (XML pull parser) and it
enrolled in five different the universities of Lahore, to is initiated to receive the RSS feed.
identify the problems they face while taking admission in the public void onCreate(Bundle savedInstanceState) {
universities. The key findings of the survey highlighteded super.onCreate(savedInstanceState);
two major issues described below. // Set view
setContentView(R.layout.main);
Delayed information about opening and closing dates of
// Set reference to this activity
admission in different universities made students either to
local = this;
enroll in an institution which was not their first preference
GetRSSDataTask task = new GetRSSDataTask();
or failed to secure admission at all.
// Start download RSS task
The admission process varied in different universities and
task.execute("http://newzninja.com/feed/");
it was hard to acquire details about the whole procedure.
// Debug the thread name
Since the applicants belonged to various regions in
Log.d("NewzninjaRssReader",
Pakistan therefore, they were not well aware of the
Thread.currentThread().getName());
location of the university and the city itself. They found it
}
difficult to locate universities which were spread across the
A click listener was created to take the user to the official
city including transportation system. Further, these visits to
source of the news.
universities caused additional financial load which
The purpose of creating a link between news on mobile view
included not only traveling but also staying in the city until
and an official source was to create feeling of satisfaction in
the procedure was completed.
the users that they were accessing correct and updated news.
July-August
3792 ISSN 1013-5316;CODEN: SINTE 8 Sci.Int.(Lahore),28(4),3789-3794,2016
The benefit of using RSS feed was that same information was Figure 6. In Figure 5, news updates are shown along with the
available on website and mobile application. This reduced the facility to view each university news in a separate tab. In
chances of inconsistencies in both applications. Figure 6 interface settings were provided for the users.
The system also provided the facility of map to locate
university campuses. The map was connected through Google
API v2. In mobile application, data was stored in mobile
local database using SQLLite database tool. A similar
approach was used where news were collected from different
news portals and made available to the end user devices [8].
In a study by [9] employed RSS feed to send courses and lab
related announcements to students through mobile devices.
Their technique was considered time saving and paper free
when survey was conducted to evaluate its usage. The benefit
of integrated application was that user could access updated
information through applications which were convenient way
for the user. Further, mobile application helped user to retain Figure 4: Map to reach desired university
information in the situation when internet facility was not
available. The widget application was especially developed
by considering under privileged cities where WIFI facility
was not available 24/7 hours a day.
Newzninja Website was developed in Wordpress CMS. The
website provided features that included information about
five universities with their official website links, newspaper
advertisements, maps, blogs, and subscription option for
users. In Figure 3, the website homepage showed posts in
order of latest updates. The menu bar showed links to the
different university’s pages and options provided by the
website. User could select a university from the drop down
menu or select a headline to go to the desired university page.
July-August