-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from WonderWoman-Team/feature/26-채팅기능
Feat #26: 채팅기능구현, fragment간 연결
- Loading branch information
Showing
25 changed files
with
475 additions
and
82 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ class Login : AppCompatActivity() { | |
|
||
private lateinit var mDbRef: DatabaseReference | ||
|
||
val name = "somin333" | ||
val name = "익명3" | ||
val email = "[email protected]" | ||
val password = "somin455" | ||
|
||
|
@@ -48,7 +48,7 @@ class Login : AppCompatActivity() { | |
mAuth.signInWithEmailAndPassword(email, password) | ||
.addOnCompleteListener(this) { task -> | ||
if (task.isSuccessful) { | ||
val intent2: Intent = Intent(this,UserList::class.java) | ||
val intent2: Intent = Intent(this,Main1Activity::class.java) | ||
startActivity(intent2) | ||
finish() | ||
Toast.makeText(this,"로그인성공", Toast.LENGTH_SHORT).show() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:aapt="http://schemas.android.com/aapt" | ||
android:width="360dp" | ||
android:height="93dp" | ||
android:viewportWidth="360" | ||
android:viewportHeight="93" | ||
> | ||
<group> | ||
<clip-path | ||
android:pathData="M15 0H345C353.284 0 360 6.71573 360 15V78C360 86.2843 353.284 93 345 93H15C6.71573 93 0 86.2843 0 78V15C0 6.71573 6.71573 0 15 0Z" | ||
/> | ||
<path | ||
android:pathData="M0 0V93H360V0" | ||
android:fillColor="#FFFFFF" | ||
/> | ||
</group> | ||
</vector> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<font-family xmlns:app="http://schemas.android.com/apk/res-auto" | ||
app:fontProviderAuthority="com.google.android.gms.fonts" | ||
app:fontProviderPackage="com.google.android.gms" | ||
app:fontProviderQuery="Noto Sans" | ||
app:fontProviderCerts="@array/com_google_android_gms_fonts_certs"> | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<font | ||
android:fontStyle="normal" | ||
android:fontWeight="700" | ||
android:font="@font/regular"/> | ||
|
||
</font-family> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<font-family xmlns:app="http://schemas.android.com/apk/res-auto" | ||
app:fontProviderAuthority="com.google.android.gms.fonts" | ||
app:fontProviderPackage="com.google.android.gms" | ||
app:fontProviderQuery="name=Noto Sans&weight=700" | ||
app:fontProviderCerts="@array/com_google_android_gms_fonts_certs"> | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<font | ||
android:fontStyle="normal" | ||
android:fontWeight="700" | ||
android:font="@font/bold"/> | ||
|
||
</font-family> |
Oops, something went wrong.