v1.0.0 - ShiftRing 정식 첫 릴리즈\

This commit is contained in:
sanjeok77
2026-08-14 09:15:15 +09:00
commit 34c19ef6b0
217 changed files with 15517 additions and 0 deletions
@@ -0,0 +1,84 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg_mesh_gradient">
<!-- Header Section (One UI 8 Style) -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="32dp"
android:paddingBottom="16dp"
android:paddingStart="24dp"
android:paddingEnd="12dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentStart="true"
android:layout_centerVertical="true">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="사용 설명서"
android:textSize="32sp"
android:textStyle="bold"
android:textColor="@color/text_primary"
android:letterSpacing="-0.03"/>
<TextView
android:id="@+id/manualVersionText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="교대링(Shiftring)"
android:textSize="14sp"
android:textColor="@color/text_secondary"
android:layout_marginTop="2dp"/>
</LinearLayout>
<ImageButton
android:id="@+id/btnCloseManual"
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@drawable/ic_delete"
android:background="?attr/selectableItemBackgroundBorderless"
app:tint="@color/text_primary"
android:padding="12dp"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"/>
</RelativeLayout>
<!-- Content Card -->
<androidx.cardview.widget.CardView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginHorizontal="8dp"
android:layout_marginBottom="16dp"
app:cardCornerRadius="28dp"
app:cardElevation="0dp"
app:cardBackgroundColor="@android:color/transparent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_glass_panel_v3"
android:padding="20dp"
android:fillViewport="true">
<TextView
android:id="@+id/manualContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textColor="@color/text_primary"
android:lineSpacingExtra="8dp"/>
</ScrollView>
</androidx.cardview.widget.CardView>
</LinearLayout>