Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions application/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.mnchatbot.myapplication"
minSdk 21
targetSdk 32
versionCode 4
versionName "1.0.3"
versionCode 5
versionName "1.0.4"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion application/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_appicon_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication"
android:theme="@style/Theme.MyApplication.NoActionBar"
tools:targetApi="31">
<activity
android:name=".ui.login.LoginActivity"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[동물병원 목록 화면] 등록된 동물병원을 시도/시군구 조건에 맞게 보여줌.*/

package com.mnchatbot.myapplication.ui.hospital;

import static android.content.Context.MODE_PRIVATE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[연계병원 상담신청 화면] 동물병원 중 연계병원에 한해 상담 신청 가능.
상담 일자(날짜, 시간), 보호자 이름, 번호, 신청 사유, 예상비용 안내 여부, 참고 이미지에 대해 입력받음. */

package com.mnchatbot.myapplication.ui.hospital;

import static android.app.Activity.RESULT_OK;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[챗봇 화면] 웹뷰를 통해 반려동물 질병을 상담할 수 있음.
하단의 상담 내용 저장 버튼을 통해 저장 가능함.*/

package com.mnchatbot.myapplication.ui.mainPage;

import static android.content.Context.MODE_PRIVATE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[튜토리얼 화면] 앱에 대한 소개와 하단 탭 기능별 설명을 보여줌.*/

package com.mnchatbot.myapplication.ui.mainPage;

import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[메인화면] 튜토리얼/챗봇/문진표/예상진단/동물병원/질병백과 화면을 출력함.
상단 툴바를 통해 로그인, 펫 선택, 상담신청 내역 화면을 볼 수 있음.*/

package com.mnchatbot.myapplication.ui.mainPage;

import android.app.AlertDialog;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[펫 추가 화면] 새로운 펫 추가.
축종, 품종, 이름, 나이, 성별, 중성화여부의 내용을 설정함. */

package com.mnchatbot.myapplication.ui.petSelect;

import android.app.Activity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[펫 선택 화면] 등록된 펫 목록을 불러오고, 원하는 펫을 선택함. */

package com.mnchatbot.myapplication.ui.petSelect;

import android.app.Activity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[문진표 목록 화면] 등록된 문진표 목록을 불러오고, 원하는 문진표를 선택하여 볼 수 있음. */

package com.mnchatbot.myapplication.ui.questionNaire;

import static android.content.Context.MODE_PRIVATE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[문진표 추가 화면] 새로운 문진표 추가.
문진표 제목, 사유, 기저질환, 약 특이사항, 수술여부, 운동여부, 기타 사항에 대해 입력받음. */

package com.mnchatbot.myapplication.ui.questionNaire;

import static android.content.Context.MODE_PRIVATE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[문진표 수정 화면] 기존 문진표 내용 수정.
문진표 제목, 사유, 기저질환, 약 특이사항, 수술여부, 운동여부, 기타 사항에 대해 수정할 수 있음. */

package com.mnchatbot.myapplication.ui.questionNaire;

import static android.content.Context.MODE_PRIVATE;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
[반려동물 프로필 화면] 초기에 등록한 반려동물 정보를 수정하거나 삭제함.
품종, 이름, 나이, 성별, 중성화여부의 내용에 대해 입력받음. */

package com.mnchatbot.myapplication.ui.setting;

import android.app.AlertDialog;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[내 프로필 화면] 로그아웃/비밀번호 변경/회원 탈퇴를 보여주고 각 화면으로 연결함.*/

package com.mnchatbot.myapplication.ui.setting;

import android.app.AlertDialog;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
[설정 화면] 내 프로필, 반려동물 프로필을 선택할 수 있음.*/

package com.mnchatbot.myapplication.ui.setting;

import androidx.appcompat.app.AppCompatActivity;
Expand Down
6 changes: 3 additions & 3 deletions application/app/src/main/res/values/themes.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.MyApplication" parent="Theme.MaterialComponents.Light.NoActionBar">
<style name="Theme.MyApplication.NoActionBar" parent="Theme.MaterialComponents.Light.NoActionBar">
<!-- Primary brand color. -->
<item name="windowNoTitle">true</item>
<item name="colorPrimary">@color/purple</item>
Expand All @@ -15,10 +15,10 @@
<!-- Customize your theme here. -->
</style>

<style name="Theme.MyApplication.NoActionBar">
<!--<style name="Theme.MyApplication.NoActionBar" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
</style>-->

<style name="Theme.MyApplication.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

Expand Down