File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
presentation/src/main/res Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<data >
7
7
8
+ <import type =" com.whyranoid.presentation.running.RunningState" />
9
+
10
+ <import type =" android.view.View" />
11
+
8
12
<variable
9
13
name =" vm"
10
14
type =" com.whyranoid.presentation.running.RunningViewModel" />
165
169
app : layout_constraintEnd_toEndOf =" parent"
166
170
app : layout_constraintStart_toEndOf =" @id/btn_pause_or_resume" />
167
171
172
+ <FrameLayout
173
+ android : id =" @+id/frame_progress_running"
174
+ android : layout_width =" match_parent"
175
+ android : layout_height =" match_parent"
176
+ android : background =" @color/black"
177
+ android : alpha =" 0.8"
178
+ android : translationZ =" @{vm.runningState instanceof RunningState.NotRunning ? 10f : 0f }"
179
+ android : visibility =" @{vm.runningState instanceof RunningState.NotRunning ? View.VISIBLE : View.GONE }" >
180
+
181
+ <com .google.android.material.progressindicator.CircularProgressIndicator
182
+ android : id =" @+id/progressindicator_running"
183
+ android : layout_width =" wrap_content"
184
+ android : layout_height =" wrap_content"
185
+ android : layout_gravity =" center"
186
+ android : contentDescription =" @string/running_start_progress_description"
187
+ android : indeterminate =" true"
188
+ android : visibility =" @{vm.runningState instanceof RunningState.NotRunning ? View.VISIBLE : View.GONE }"
189
+ app : indicatorColor =" ?attr/colorOnPrimary" />
190
+
191
+ </FrameLayout >
192
+
168
193
</androidx .constraintlayout.widget.ConstraintLayout>
169
194
</layout >
Original file line number Diff line number Diff line change 113
113
<string name =" running_channel_name" >활동 추적</string >
114
114
<string name =" running_channel_description" >달리기 활동을 추적하는 알림 채널입니다.</string >
115
115
<string name =" running_map_location_button" >🎯</string >
116
+ <string name =" running_start_progress_description" >러닝 시작을 기다리고 있어요</string >
116
117
117
118
<!-- 라닝 종료 화면-->
118
119
<string name =" running_finish_tool_bar" >러닝 종료</string >
You can’t perform that action at this time.
0 commit comments