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
39 changes: 39 additions & 0 deletions app/src/main/res/layout/fragment_my_fit_off.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:background="@color/zircon"
android:orientation="vertical">

<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/materialToolbar_MyFitOff"
style="@style/Theme.Fitmate.Toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/zircon"
android:minHeight="?attr/actionBarSize"
app:title="@string/my_fit_off_scr_toolbar" />

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="vertical">

<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerMyFitOff"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:itemCount="3"
tools:listitem="@layout/item_fit_off" />

</LinearLayout>
</ScrollView>

</LinearLayout>
3 changes: 3 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,7 @@
<string name="certificate_scr_timer">00 : 00 : 00</string>
<string name="certificate_scr_confirm">\t\t FIT 기록 시작하기 \t\t</string>


<string name="my_fit_off_scr_toolbar">나의 피트오프 열람</string>

</resources>