-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MVP] New Memo app design #57
Conversation
0f14c26
to
981f1b9
Compare
1b4abdc
to
cfdac94
Compare
package dev.arkbuilders.arkmemo.models | ||
|
||
import android.os.Parcelable | ||
import kotlinx.parcelize.Parcelize | ||
|
||
@Parcelize | ||
data class Tag(val value: String) : Parcelable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not yet implemented in MVP version, but might be there in post MVP.
So I'd like to keep it around.
@@ -0,0 +1,33 @@ | |||
package dev.arkbuilders.arkmemo.ui.adapters |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tag feature is not yet implemented in MVP version, but might be there in post MVP.
So I'd like to keep this class around.
cfdac94
to
8d5deed
Compare
app/src/main/java/dev/arkbuilders/arkmemo/ui/fragments/ArkMediaPlayerFragment.kt
Outdated
Show resolved
Hide resolved
app/src/main/java/dev/arkbuilders/arkmemo/ui/fragments/ArkMediaPlayerFragment.kt
Outdated
Show resolved
Hide resolved
fbffc9f
to
b1815b9
Compare
* Button Save/Paste are not working in Text Note edit mode * Correct Start over action when recording voice memo * Enhance voice memo recording/playback UI
search.back.mp4
wave.changes.mp4
SVID_20240926_211518_1.mp4
SVID_20240923_150812_1.mp4
|
@shubertm By |
Alright, let's discuss |
* Ask for confirmation when back is pressed while record is on-going, clear recording resource when record is discarded: #57 (comment)
@shubertm Back pressed action is now handled as per expected for the above 2 cases: 1. While search is in focus For this, currently recording will be stopped and Save confirmation will be asked if back is pressed while there's on-going recording. If Save is chosen, voice note is saved. Otherwise, the temp recording file will be deleted. Please help verify. |
… using FFT-based magnitude instead of using wave form data * Disable auto-recreation of activity upon device's rotation to avoid unwanted issues until landscape mode design is finished (post MVP)
@shubertm These 2 issues are now fixed. Please help verify. |
|
* Fix swipe to delete issues: Item disappear after discarding confirmation. Deleted item appears again after deletion confirm & scrolling up/down * Restore previous scroll position when pressing back twice from Note search screen with non-empty search keyword
… is paused, and continue from where it's paused when resume
@shubertm Is it good to merge now? |
Let's merge now. The rest of your PRs should follow up in main branch. Good job 👍 |
* Ask for confirmation when back is pressed while record is on-going, clear recording resource when record is discarded: #57 (comment)
Description
Implement new Memo app design for first MVP version.
#55
Screenshot
Limitations
Minimal function for graphic notes.-> This is now fully functional.missing voice note detail view UI design). -> Voice note detail view UI is now implemented.Search does not function yet.-> This is now supported with commit a85f62f