Skip to content

Commit

Permalink
Merge pull request #36 from ttoklip/feat/#1_home_news_fragment
Browse files Browse the repository at this point in the history
Feat/#1 home news fragment
  • Loading branch information
posite authored Feb 6, 2024
2 parents 0fe639a + d4c83ea commit 24a776f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
15 changes: 9 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,20 @@
android:exported="false" />
<activity
android:name=".presentation.honeytip.read.ReadActivity"
android:screenOrientation="portrait"
android:exported="false" />
<activity
android:name=".presentation.honeytip.write.WriteHoneyTipActivity"
android:screenOrientation="portrait"
android:exported="false"
android:windowSoftInputMode="adjustPan" />
<activity
android:screenOrientation="portrait"
android:name=".presentation.alarm.AlarmActivity"
android:exported="false" />
<activity
android:name=".presentation.news.detail.ArticleActivity"
android:screenOrientation="portrait"
android:exported="false" />
<activity
android:name=".presentation.mypage.SetAnnouncementActivity"
Expand Down Expand Up @@ -125,26 +129,24 @@
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan"
android:exported="false" />
<activity android:name=".presentation.intro.IntroActivity"
android:exported="false"/>
<activity android:name=".presentation.login.LoginActivity"
android:exported="false"/>
<activity android:name=".presentation.signup.SignupActivity"
android:exported="false"/>
<activity android:name=".presentation.signup.LocationActivity"
android:screenOrientation="portrait"
android:exported="false"/>
<activity android:name=".presentation.signup.DirectLocationActivity"
android:screenOrientation="portrait"
android:exported="false"/>

<activity
android:name=".presentation.intro.SplashActivity"
android:screenOrientation="portrait"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:screenOrientation="portrait"
android:name=".presentation.MainActivity"
android:exported="false"/>
<!-- <activity-->
Expand Down Expand Up @@ -172,6 +174,7 @@
</service>
<activity
android:name=".presentation.search.SearchActivity"
android:screenOrientation="portrait"
android:exported="false" />
</application>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import dagger.hilt.android.AndroidEntryPoint
class WriteCommunicationActivity :
BaseActivity<ActivityWriteCommunicationBinding>(R.layout.activity_write_communication) {
private val imageAdapter by lazy {
ImageRVA()
ImageRVA({})
}

private val pickMultipleMedia = registerForActivityResult(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class WriteTogetherActivity :
}
}
private val imageAdapter by lazy {
ImageRVA()
ImageRVA({})
}

private val pickMultipleMedia = registerForActivityResult(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import com.umc.ttoklip.presentation.base.BaseActivity

class ImageViewActivity: BaseActivity<ActivityImageViewBinding>(R.layout.activity_image_view) {
override fun initView() {
setSupportActionBar()
//setSupportActionBar()
binding.root.setOnClickListener {
if(supportActionBar?.isShowing == true){
supportActionBar?.hide()
Expand Down

0 comments on commit 24a776f

Please sign in to comment.