Move the UI classes into a separate package

This commit is contained in:
Alex Sytnyk 2018-06-20 13:34:20 +03:00
parent f4aa00d44c
commit 29acba902e
6 changed files with 12 additions and 9 deletions

View file

@ -20,7 +20,7 @@
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<activity <activity
android:name=".MainActivity" android:name=".ui.MainActivity"
android:configChanges="orientation|screenSize" android:configChanges="orientation|screenSize"
android:launchMode="singleTask" android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"> android:windowSoftInputMode="adjustResize">

View file

@ -5,7 +5,7 @@
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:orientation="vertical" android:orientation="vertical"
tools:context=".MainActivity"> tools:context=".ui.MainActivity">
<FrameLayout <FrameLayout
android:layout_width="match_parent" android:layout_width="match_parent"
@ -18,7 +18,7 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:scrollbars="vertical" /> android:scrollbars="vertical" />
<net.osmand.telegram.views.LockableViewPager <net.osmand.telegram.ui.views.LockableViewPager
android:id="@+id/pager" android:id="@+id/pager"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"

View file

@ -5,7 +5,7 @@ import android.app.PendingIntent
import android.content.Intent import android.content.Intent
import android.support.v4.app.NotificationCompat import android.support.v4.app.NotificationCompat
import android.support.v4.app.NotificationManagerCompat import android.support.v4.app.NotificationManagerCompat
import net.osmand.telegram.MainActivity import net.osmand.telegram.ui.MainActivity
import net.osmand.telegram.TelegramApplication import net.osmand.telegram.TelegramApplication

View file

@ -1,4 +1,4 @@
package net.osmand.telegram package net.osmand.telegram.ui
import android.app.Dialog import android.app.Dialog
import android.content.DialogInterface import android.content.DialogInterface
@ -18,6 +18,7 @@ import android.view.inputmethod.EditorInfo
import android.widget.Button import android.widget.Button
import android.widget.TextView import android.widget.TextView
import net.osmand.PlatformUtil import net.osmand.PlatformUtil
import net.osmand.telegram.R
import net.osmand.telegram.utils.AndroidUtils import net.osmand.telegram.utils.AndroidUtils
import studio.carbonylgroup.textfieldboxes.ExtendedEditText import studio.carbonylgroup.textfieldboxes.ExtendedEditText

View file

@ -1,4 +1,4 @@
package net.osmand.telegram package net.osmand.telegram.ui
import android.Manifest import android.Manifest
import android.app.Dialog import android.app.Dialog
@ -16,9 +16,11 @@ import android.support.v7.widget.*
import android.view.* import android.view.*
import android.widget.Toast import android.widget.Toast
import net.osmand.PlatformUtil import net.osmand.PlatformUtil
import net.osmand.telegram.LoginDialogFragment.LoginDialogType import net.osmand.telegram.R
import net.osmand.telegram.TelegramApplication
import net.osmand.telegram.helpers.TelegramHelper import net.osmand.telegram.helpers.TelegramHelper
import net.osmand.telegram.helpers.TelegramHelper.* import net.osmand.telegram.helpers.TelegramHelper.*
import net.osmand.telegram.ui.LoginDialogFragment.LoginDialogType
import net.osmand.telegram.utils.AndroidUtils import net.osmand.telegram.utils.AndroidUtils
import org.drinkless.td.libcore.telegram.TdApi import org.drinkless.td.libcore.telegram.TdApi
@ -387,7 +389,7 @@ class MainActivity : AppCompatActivity(), TelegramListener {
val showOnMapSwitch: SwitchCompat? = view.findViewById(R.id.show_on_map_switch) val showOnMapSwitch: SwitchCompat? = view.findViewById(R.id.show_on_map_switch)
} }
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ChatsAdapter.ViewHolder { override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
val view = LayoutInflater.from(parent.context).inflate(R.layout.chat_list_item, parent, false) val view = LayoutInflater.from(parent.context).inflate(R.layout.chat_list_item, parent, false)
return ViewHolder(view) return ViewHolder(view)
} }

View file

@ -1,4 +1,4 @@
package net.osmand.telegram.views package net.osmand.telegram.ui.views
import android.content.Context import android.content.Context
import android.support.v4.view.ViewPager import android.support.v4.view.ViewPager