Обучение студентов японскому языку

Содержание начального уровня владения японским языком. Описание лингвистического эксперимента, составление упражнений. Разработка Android-приложения, системные требования. Сдача международного экзамена по определению уровня владения японским языком.

Рубрика Педагогика
Вид дипломная работа
Язык русский
Дата добавления 10.02.2017
Размер файла 2,6 M

Отправить свою хорошую работу в базу знаний просто. Используйте форму, расположенную ниже

Студенты, аспиранты, молодые ученые, использующие базу знаний в своей учебе и работе, будут вам очень благодарны.

android:textSize="@dimen/text_medium"

android:layout_below="@+id/divider_three"

android:gravity="center"

android:textStyle="bold"

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

<RadioGroup

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

android:id="@+id/radio_theme"

android:layout_below="@+id/choose_lang_text_view">

<RadioButton

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/eng_lang"

android:id="@+id/radio_original"

style="@style/SettingsCheckBoxStyle"

android:checked="true" />

<RadioButton

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/jap_lang"

android:id="@+id/radio_dark"

style="@style/SettingsCheckBoxStyle" />

<RadioButton

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="@string/rus_lang"

android:id="@+id/radio_neutral"

style="@style/SettingsCheckBoxStyle" />

</RadioGroup>

<ImageView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/divider_two"

android:src="@drawable/divider"

android:layout_marginTop="@dimen/divider_margin_top"

android:layout_below="@+id/enable_sound" />

<CheckBox

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="@string/enable_sound"

android:id="@+id/enable_sound"

android:layout_below="@+id/divider_one"

style="@style/SettingsCheckBoxStyle" />

<ImageView

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:id="@+id/divider_three"

android:src="@drawable/divider"

android:layout_below="@+id/settings_title"

android:layout_marginTop="@dimen/divider_margin_top" />

<Button

android:layout_width="@dimen/buttons_width"

android:layout_height="@dimen/button_height"

android:text="@string/back"

android:id="@+id/back_button"

android:layout_centerHorizontal="true"

style="@style/MainMenuButtonsStyle"

android:layout_below="@+id/divider_two"

android:layout_marginTop="@dimen/button_margin_top" />

<ImageView

android:layout_width="@dimen/gunbai_width"

android:layout_height="@dimen/gunbai_height"

android:id="@+id/settings_picture_scroll"

android:src="@drawable/settings_picture"

android:scaleType="fitCenter"

android:layout_alignParentBottom="true"

android:layout_alignParentRight="true"

android:layout_marginRight="@dimen/gunbai_pic_margin_left" />

<ImageView

android:layout_width="@dimen/gunbai_width"

android:layout_height="@dimen/gunbai_height"

android:id="@+id/settings_picture_gunbai"

android:src="@drawable/settings_picture_two"

android:layout_marginLeft="@dimen/gunbai_pic_margin_left"

android:scaleType="fitCenter"

android:layout_alignParentBottom="true"

android:layout_alignParentLeft="true"

android:layout_alignParentEnd="false" />

</RelativeLayout>

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

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

android:layout_width="match_parent"

android:layout_height="match_parent"

android:id="@+id/statistic_element"

android:layout_gravity="center_horizontal"

android:textSize="@dimen/text_medium"

android:textStyle="bold"

android:textColor="@color/result_view_text_color"

android:padding="@dimen/game_text_task_padding" />

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

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

android:layout_width="match_parent" android:layout_height="match_parent"

style="@style/LayoutStyle"

android:id="@+id/statistics_background">

<ImageView

android:layout_width="match_parent"

android:layout_height="@dimen/title_height"

android:id="@+id/statistic_title"

android:layout_alignParentTop="true"

android:layout_centerHorizontal="true"

android:src="@drawable/statistics_title" />

<ImageView

android:id="@+id/statistic_head_divider"

android:layout_below="@+id/statistic_title"

style="@style/DividerStyle" />

<ListView

android:layout_width="match_parent"

android:layout_height="@dimen/statistic_list_view_height"

android:id="@+id/statistic_result_view"

android:layout_below="@+id/statistic_head_divider"

android:layout_centerHorizontal="true"

android:gravity="center"

style="@style/StatisticsStyle"

android:layout_marginTop="@dimen/elements_divider_margin_top" />

<Button

android:layout_width="@dimen/buttons_width"

android:layout_height="@dimen/button_height"

android:text="@string/back"

android:id="@+id/statistic_back_button"

style="@style/MainMenuButtonsStyle"

android:layout_below="@+id/statistic_result_view"

android:layout_centerHorizontal="true"

android:layout_marginTop="@dimen/statistic_button_back_margin_top" />

</RelativeLayout>

Приложение 4

SQL-код базы данных

CREATE TABLE `android_metadata` (

`locale` TEXT

);

CREATE TABLE `result_character_meaning` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,

`correct_answer` INTEGER NOT NULL,

`incorrect_answer` INTEGER NOT NULL,

`total_rate` TEXT NOT NULL

);

CREATE TABLE `result_choose_particle` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,

`correct_answer` INTEGER NOT NULL,

`incorrect_answer` INTEGER NOT NULL,

`total_rate` INTEGER NOT NULL

);

CREATE TABLE `result_gram` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,

`correct_answer` INTEGER NOT NULL,

`incorrect_answer` INTEGER NOT NULL,

`total_rate` TEXT NOT NULL

);

CREATE TABLE `sqlite_sequence` (

`name` TEXT,

`seq` TEXT

);

CREATE TABLE `task_char_trans` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,

`task` TEXT NOT NULL UNIQUE,

`answer_one` TEXT NOT NULL,

`answer_two` TEXT NOT NULL,

`answer_three` TEXT NOT NULL,

`answer_four` TEXT NOT NULL,

`correct_answer` TEXT NOT NULL UNIQUE

);

CREATE TABLE `task_choose_particle` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,

`task` TEXT NOT NULL UNIQUE,

`answer_one` TEXT NOT NULL,

`answer_two` TEXT NOT NULL,

`answer_three` TEXT NOT NULL,

`answer_four` TEXT NOT NULL,

`correct_answer` TEXT NOT NULL

);

CREATE TABLE `task_gram` (

`_id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE,

`task` TEXT NOT NULL UNIQUE,

`answer_one` TEXT NOT NULL,

`answer_two` TEXT NOT NULL,

`answer_three` TEXT NOT NULL,

`answer_four` TEXT NOT NULL,

`correct_answer` TEXT NOT NULL UNIQUE

);

Приложение 5

Скриншот таблицы “task_gram” базы данных

Размещено на Allbest.ru


Подобные документы

Работы в архивах красиво оформлены согласно требованиям ВУЗов и содержат рисунки, диаграммы, формулы и т.д.
PPT, PPTX и PDF-файлы представлены только в архивах.
Рекомендуем скачать работу.