Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
My notepad
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
9731301
My notepad
Commits
e27b1a0d
Commit
e27b1a0d
authored
Oct 04, 2020
by
9731301
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add duration with help of TimeAgo
parent
dbb33fb2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
170 additions
and
108 deletions
+170
-108
AudioListFragment.java
...notepad/MenuFeatures/VoiceMassages/AudioListFragment.java
+13
-4
MyVoice.java
...ures/VoiceMassages/VoiceMassagesRecyclerView/MyVoice.java
+9
-3
TimeAgo.java
...ures/VoiceMassages/VoiceMassagesRecyclerView/TimeAgo.java
+1
-1
VoiceAdaptor.java
...VoiceMassages/VoiceMassagesRecyclerView/VoiceAdaptor.java
+140
-99
white_pause.xml
app/src/main/res/drawable/white_pause.xml
+5
-0
player_sheet.xml
app/src/main/res/layout/player_sheet.xml
+2
-1
No files found.
app/src/main/java/com/example/mynotepad/MenuFeatures/VoiceMassages/AudioListFragment.java
View file @
e27b1a0d
...
...
@@ -15,7 +15,10 @@ import android.util.Log;
import
android.view.LayoutInflater
;
import
android.view.View
;
import
android.view.ViewGroup
;
import
android.widget.ImageButton
;
import
android.widget.LinearLayout
;
import
android.widget.SeekBar
;
import
android.widget.TextView
;
import
com.example.mynotepad.MenuFeatures.CustomToolbarOption
;
import
com.example.mynotepad.MenuFeatures.CustomToolbarOptionListener
;
...
...
@@ -32,12 +35,15 @@ import java.util.ArrayList;
public
class
AudioListFragment
extends
Fragment
{
private
ConstraintLayout
playerSheet
;
p
rivate
BottomSheetBehavior
bottomSheetBehavior
;
p
ublic
static
BottomSheetBehavior
bottomSheetBehavior
;
private
RecyclerView
recyclerViewRecordings
;
private
VoiceAdaptor
recordingAdapter
;
private
ArrayList
<
MyVoice
>
myVoiceArrayList
;
private
CustomToolbarOption
customToolbarOption
;
private
MyVoice
myChosenVoice
;
private
ImageButton
playerPlayBtn
;
private
TextView
fileNameTv
,
headerTitleTv
;
private
SeekBar
seekBar
;
@Override
public
View
onCreateView
(
LayoutInflater
inflater
,
ViewGroup
container
,
...
...
@@ -61,7 +67,10 @@ public class AudioListFragment extends Fragment {
customToolbarOption
=
v
.
findViewById
(
R
.
id
.
customToolbarOption
);
customToolbarOption
.
setVisibility
(
View
.
GONE
);
myVoiceArrayList
=
new
ArrayList
<>();
playerPlayBtn
=
v
.
findViewById
(
R
.
id
.
player_play_btn
);
headerTitleTv
=
v
.
findViewById
(
R
.
id
.
player_header_title
);
fileNameTv
=
v
.
findViewById
(
R
.
id
.
textView3
);
seekBar
=
v
.
findViewById
(
R
.
id
.
seekBar
);
recyclerViewRecordings
=
v
.
findViewById
(
R
.
id
.
recyclerView
);
recyclerViewRecordings
.
setLayoutManager
(
new
LinearLayoutManager
(
getContext
(),
LinearLayoutManager
.
VERTICAL
,
false
));
...
...
@@ -78,11 +87,11 @@ public class AudioListFragment extends Fragment {
for
(
int
i
=
0
;
i
<
files
.
length
;
i
++)
{
String
fileName
=
files
[
i
].
getName
();
String
recordingUri
=
root
.
getAbsolutePath
()
+
"/NotepadVoiceRecorder/Audios/"
+
fileName
;
MyVoice
myVoice
=
new
MyVoice
(
recordingUri
,
fileName
,
false
);
MyVoice
myVoice
=
new
MyVoice
(
recordingUri
,
fileName
,
false
,
files
[
i
].
lastModified
()
);
myVoiceArrayList
.
add
(
myVoice
);
}
}
recordingAdapter
=
new
VoiceAdaptor
(
getContext
(),
myVoiceArrayList
);
recordingAdapter
=
new
VoiceAdaptor
(
getContext
(),
myVoiceArrayList
,
playerPlayBtn
,
fileNameTv
,
headerTitleTv
,
seekBar
);
recyclerViewRecordings
.
setAdapter
(
recordingAdapter
);
}
...
...
app/src/main/java/com/example/mynotepad/MenuFeatures/VoiceMassages/VoiceMassagesRecyclerView/MyVoice.java
View file @
e27b1a0d
package
com
.
example
.
mynotepad
.
MenuFeatures
.
VoiceMassages
.
VoiceMassagesRecyclerView
;
public
class
MyVoice
{
String
Uri
,
fileName
;
boolean
isPlaying
=
false
;
private
String
Uri
,
fileName
;
private
boolean
isPlaying
=
false
;
private
long
lastModified
;
public
MyVoice
(
String
uri
,
String
fileName
,
boolean
isPlaying
)
{
public
MyVoice
(
String
uri
,
String
fileName
,
boolean
isPlaying
,
long
lastModified
)
{
Uri
=
uri
;
this
.
fileName
=
fileName
;
this
.
isPlaying
=
isPlaying
;
this
.
lastModified
=
lastModified
;
}
public
String
getUri
()
{
...
...
@@ -25,4 +27,8 @@ public class MyVoice {
public
void
setPlaying
(
boolean
playing
)
{
this
.
isPlaying
=
playing
;
}
public
long
getLastModified
()
{
return
lastModified
;
}
}
app/src/main/java/com/example/mynotepad/MenuFeatures/VoiceMassages/VoiceMassagesRecyclerView/TimeAgo.java
View file @
e27b1a0d
...
...
@@ -5,7 +5,7 @@ import java.util.Date;
import
java.util.concurrent.TimeUnit
;
public
class
TimeAgo
{
Date
now
=
new
Date
();
private
Date
now
=
new
Date
();
public
String
getTimeAgo
(
long
duration
)
{
long
seconds
=
TimeUnit
.
MILLISECONDS
.
toSeconds
(
now
.
getTime
()
-
duration
);
...
...
app/src/main/java/com/example/mynotepad/MenuFeatures/VoiceMassages/VoiceMassagesRecyclerView/VoiceAdaptor.java
View file @
e27b1a0d
This diff is collapsed.
Click to expand it.
app/src/main/res/drawable/white_pause.xml
0 → 100644
View file @
e27b1a0d
<vector
android:height=
"40dp"
android:tint=
"#FFFFFF"
android:viewportHeight=
"24"
android:viewportWidth=
"24"
android:width=
"40dp"
xmlns:android=
"http://schemas.android.com/apk/res/android"
>
<path
android:fillColor=
"@android:color/white"
android:pathData=
"M6,19h4L10,5L6,5v14zM14,5v14h4L18,5h-4z"
/>
</vector>
app/src/main/res/layout/player_sheet.xml
View file @
e27b1a0d
...
...
@@ -92,7 +92,7 @@
android:id=
"@+id/player_play_btn"
android:layout_width=
"40dp"
android:layout_height=
"40dp"
android:layout_marginTop=
"2
8
dp"
android:layout_marginTop=
"2
4
dp"
android:background=
"#0035438C"
android:padding=
"5dp"
app:layout_constraintEnd_toEndOf=
"parent"
...
...
@@ -127,6 +127,7 @@
app:srcCompat=
"@android:drawable/ic_media_ff"
/>
<SeekBar
android:id=
"@+id/seekBar"
android:layout_width=
"match_parent"
android:layout_height=
"wrap_content"
android:layout_margin=
"20dp"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment