PHAN TICH: UNG DUNG DOC TRUYEN
READ STORY
Ứng dụng đọc truyện - Ver Standard
Mục đích
- Đọc truyện trên các smartphone chạy android.
Danh sách các chức năng chính
1. Hiển thị danh sách truyển ở trang chủ: hiển thị các truyện random được group lại theo nhãn của truyện.
2. Hiển thị màn hình danh mục nhãn truyện.
3. Lọc các truyện theo nhãn ở mục 1 và 2.
4. Tìm kiếm truyện theo tên truyện.
5. Đọc truyện trên màn hình chính.
6. Hiển thị tên chương, tên truyện đang đọc.
7. Hiển thị các chương của truyện.
8. Chuyển chương truyện lùi hoặc đi đến chương tiếp theo.
Mô tả chức năng chính
1. Màn hình chính
Khi mở ứng dụng sẽ hiển thị trang chủ gôm nhãn và danh sách các truyện random.
Vuốt từ dưới lên để hiển thị thêm các nhãn truyện và truyện khác.
Chạm vào nhãn truyện để hiển thị nhiều hơn các truyện cùng loại.
Chạm vào truyện để bắt đầu đọc truyện.
2. Màn hình danh mục
Kéo từ mép trái màn hình sang phải sẽ hiển thị tab danh mục nhãn truyện.
Trong danh mục nhãn truyện gồm có:
o Hiển thị thông tin của app: tên, logo của nhà cung cấp.
o Hiển thị các danh mục nhãn của truyện: chạm để lọc theo nhãn truyện
o Thanh tìm kiếm theo tên truyện: nhập tên truyện để tìm kiếm
o Tên của truyện đang đọc hiện tại.
3. Màn hình đọc truyện:
Màn hình đọc truyện gồm:
o Khung nhìn hiển thị nội dung của chương truyện.
o Thanh điều hướng truyện:
§ Nút chương trước, chương sau.
§ Tên chương đang đọc.
§ Combobox hiển thị danh sách các chương của truyện: vuốt từ trên xuống hoặc từ dưới lên để tìm chương cần đọc.
----------------------------
----------------------------
Email: ryantruong.2512@gmail.com
Fedora: VirtualBox 4.3.26 on Fedora 21/20, CentOS/RHEL 7.1/6.6/5.11
VirtualBox 4.3.26 on Fedora 21/20, CentOS/RHEL 7.1/6.6/5.11
Oracle VirtualBox is a powerful x86 and AMD64/Intel64 virtualization product for enterprise as well as home use. VirtualBox is a general-purpose full virtualizer for x86 hardware. Targeted at server, desktop and embedded use, it is now the only professional-quality virtualization solution that is also Open Source Software.
VirtualBox supports a large number of guest operating systems:
- Windows 3.x
- Windows NT 4.0
- Windows 2000
- Windows XP
- Windows Server 2003
- Windows Vista
- Windows 7
- Windows 8
- Windows 8.1
- DOS
- Linux (2.4, 2.6, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10, 3.11)
- Solaris
- OpenSolaris
- OpenBSD
This guide shows howto install VirtualBox 4.3 (currently 4.3.26) on Fedora 21/20/19/18/17, CentOS 7.1/6.6/5.11, Red Hat (RHEL) 7.1/6.6/5.11. This guide uses Virtual Box own yum repositories.
Note: Fedora 16 users can install VirtualBox 4.2, Fedora 15/14 users can install VirtualBox 4.1, Fedora 13 users can install VirtualBox 4.0 and Fedora 12 users can install VirtualBox 3.2.
1. Change to root User
0
1
2
3
4
|
su -
## OR ##
sudo -i
|
2. Install Fedora or RHEL Repo Files
0
1
2
3
4
5
6
7
8
|
cd /etc/yum.repos.d/
## Fedora 21/20/19/18/17/16/15/14/13/12 users
wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo
## CentOS 7.1/6.6/5.11 and Red Hat (RHEL) 7.1/6.6/5.11 users
wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo
|
3. Update latest packages and check your kernel version
Update packages
0
1
2
|
yum update
|
Check that that you are running latest installed kernel version
Output of following commands version numbers should match:
Output of following commands version numbers should match:
0
1
2
3
4
|
rpm -qa kernel |sort -V |tail -n 1
uname -r
|
Note: If you got kernel update or run older kernel than newest installed then reboot:
0
1
2
|
reboot
|
4. Install following dependency packages
CentOS 7/6/5 and Red Hat (RHEL) 7/6/5 needs EPEL repository, install it with following command:
0
1
2
3
4
5
6
7
8
9
|
## CentOS 7 and RHEL 7 ##
rpm -Uvh http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm
## CentOS 6 and RHEL 6 ##
rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
## CentOS 5 and RHEL 5 ##
rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
|
0
1
2
3
4
5
|
yum install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms
## PAE kernel users install ##
yum install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-PAE-devel dkms
|
5. Install VirtualBox Latest Version 4.3 (currently 4.3.22)
0
1
2
|
yum install VirtualBox-4.3
|
Note:
This command create automatically vboxusers group and VirtualBox user must be member of that group.
This command also build needed kernel modules.
This command create automatically vboxusers group and VirtualBox user must be member of that group.
This command also build needed kernel modules.
Rebuild kernel modules with following command:
0
1
2
3
4
|
/etc/init.d/vboxdrv setup
## OR ##
service vboxdrv setup
|
6. Add VirtualBox User(s) to vboxusers Group
Replace user_name with your own user name or some another real user name.
0
1
2
|
usermod -a -G vboxusers user_name
|
7. Start VirtualBox
Use launcher from menu or simply run:
0
1
2
|
VirtualBox
|
Troubleshooting
If you have problems with KERN_DIR parameter or your kernel directory is not automatically detected then set KERN_DIR environment variable manually, using following method:
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Current running kernel on Fedora ##
KERN_DIR=/usr/src/kernels/`uname -r`
## Current running kernel on CentOS and Red Hat (RHEL) ##
KERN_DIR=/usr/src/kernels/`uname -r`-`uname -m`
## Fedora example ##
KERN_DIR=/usr/src/kernels/2.6.33.5-124.fc13.i686
## CentOS and Red Hat (RHEL) example ##
KERN_DIR=/usr/src/kernels/2.6.18-194.11.1.el5-x86_64
## Export KERN_DIR ##
export KERN_DIR
|
Subscribe to:
Posts
(
Atom
)