-
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.
- Loading branch information
Showing
7 changed files
with
111 additions
and
3 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
app/src/main/java/com/sopt/umbba_android/presentation/onboarding/QuestActivity.kt
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,4 @@ | ||
package com.sopt.umbba_android.presentation.onboarding | ||
|
||
class QuestActivity { | ||
} |
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,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:id="@android:id/background"> | ||
<shape> | ||
<corners android:radius="18dp" /> | ||
<solid android:color="@color/grey_D2D2D2" /> | ||
</shape> | ||
</item> | ||
|
||
<item android:id="@android:id/progress" | ||
android:top="1dp" | ||
android:bottom="1dp" | ||
android:left="1dp" | ||
android:right="1dp"> | ||
|
||
<scale android:scaleWidth="100%"> | ||
<shape> | ||
<corners android:radius="18dp"/> | ||
<solid android:color="@color/grey_666666"/> | ||
</shape> | ||
</scale> | ||
</item> | ||
</layer-list> |
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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<layout xmlns:app="http://schemas.android.com/apk/res-auto"> | ||
<data> | ||
<variable | ||
name="titleText" | ||
type="String" /> | ||
</data> | ||
|
||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent"> | ||
|
||
<include | ||
android:id="@+id/layout_appbar" | ||
layout="@layout/basic_appbar" /> | ||
|
||
<TextView | ||
android:id="@+id/tv_title" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginStart="24dp" | ||
android:layout_marginTop="18dp" | ||
android:text="간단한 질문에\n답해줘" | ||
android:textColor="@color/black" | ||
android:textSize="24sp" | ||
android:textStyle="bold" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@id/layout_appbar" /> | ||
|
||
<TextView | ||
android:id="@+id/tv_progress_sub" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toBottomOf="@id/tv_title" | ||
android:text="거의 다 왔어! 조금만 힘내줘!" | ||
android:layout_marginStart="24dp" | ||
android:layout_marginTop="12dp" | ||
android:textColor="@color/grey_999999"/> | ||
<ProgressBar | ||
android:id="@+id/progress_bar" | ||
android:layout_width="match_parent" | ||
android:layout_height="5dp" | ||
android:layout_marginTop="12dp" | ||
app:layout_constraintTop_toBottomOf="@id/tv_progress_sub" | ||
style="@style/Widget.AppCompat.ProgressBar.Horizontal" | ||
android:progressDrawable="@drawable/progress_qeust" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
android:layout_marginHorizontal="24dp"/> | ||
|
||
<FrameLayout | ||
android:layout_width="match_parent" | ||
android:layout_height="335dp" | ||
android:layout_marginHorizontal="24dp" | ||
android:layout_marginTop="24dp" | ||
app:layout_constraintTop_toBottomOf="@id/progress_bar" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent"/> | ||
|
||
<androidx.appcompat.widget.AppCompatButton | ||
android:layout_width="match_parent" | ||
android:layout_height="60dp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
android:enabled="false" | ||
android:layout_margin="24dp" | ||
android:textColor="@color/white" | ||
android:text="@string/btn_next" | ||
android:background="@drawable/sel_invite_code_btn_next"/> | ||
</androidx.constraintlayout.widget.ConstraintLayout> | ||
|
||
</layout> |
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