Skip to content

Commit

Permalink
[feat] #6 커스텀뷰 확인을 위한 더미 디자인, 뷰 구현 및 엑티비티 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan2dani committed Jan 2, 2024
1 parent 375fc37 commit 84c1cc0
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

<activity
android:name=".presentation.ui.dummy.DummyCustomDEditTextActivity"
android:exported="false"
android:screenOrientation="portrait"
tools:ignore="LockedOrientationActivity"/>
</application>
</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package org.sopt.pingle.presentation.ui.dummy

import android.os.Bundle
import org.sopt.pingle.R
import org.sopt.pingle.databinding.ActivityEditTextCustomTestBinding
import org.sopt.pingle.util.base.BindingActivity

class DummyCustomDEditTextActivity: BindingActivity<ActivityEditTextCustomTestBinding>(R.layout.activity_edit_text_custom_test) {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
}
}
23 changes: 23 additions & 0 deletions app/src/main/res/layout/activity_edit_text_custom_test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<data>

</data>

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<org.sopt.pingle.util.component.PingleEditText
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/spacing16"
app:hint="힌트얌"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:title="레이블" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

0 comments on commit 84c1cc0

Please sign in to comment.