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
public class ChatBase { | |
protected String name; | |
} |
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
Person owner; |
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
import java.io.*; | |
public class Solution | |
{ | |
private int n1; | |
private int n2; | |
private int n3; | |
public static void main(String[] args) throws Exception | |
{ |
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
public class MainActivity extends BaseActivity implements MainActivityView { | |
private static final int LAYOUT = R.layout.activity_main; | |
//@formatter:off | |
@InjectPresenter MainActivityPresenter mainPresenter; | |
@BindView(R.id.ltContainer) FrameLayout ltContainer; | |
//@formatter:on | |
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
public class LoginFragment extends BaseFragment implements LoginView { | |
private static final int LAYOUT = R.layout.fragment_login; | |
//@formatter:off | |
@InjectPresenter LoginPresenter loginPresenter; | |
@BindView(R.id.ltHeader) LinearLayout ltHeader; | |
@BindView(R.id.etPhone) EditText etPhone; |
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
public class SplashScreenActivity extends BaseActivity implements SplashScreenView { | |
private static final int LAYOUT = R.layout.activity_splash_screen; | |
//@formatter:off | |
@InjectPresenter SplashScreenPresenter splashScreenPresenter; | |
@BindView(R.id.ltBackground) LinearLayout ltBackground; | |
@BindView(R.id.btnRepeat) Button btnRepeat; | |
@BindView(R.id.tvSomethingWentWrong) TextView tvSomethingWentWrong; |
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
public class MainFragment extends BaseFragment implements MainFragmentView { | |
private static final int LAYOUT = R.layout.fragment_main; | |
//@formatter:off | |
@InjectPresenter MainFragmentPresenter mainPresenter; | |
@BindView(R.id.vpMain) NonSwipeableViewPager vpMain; |
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
public class MainActivity extends BaseActivity implements MainActivityView { | |
private static final int LAYOUT = R.layout.activity_main; | |
//@formatter:off | |
@InjectPresenter MainActivityPresenter mainPresenter; | |
@BindView(R.id.ltContainer) FrameLayout ltContainer; | |
//@formatter:on | |
@ProvidePresenter |
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
public class MainFragment extends BaseFragment implements MainFragmentView { | |
private static final int LAYOUT = R.layout.fragment_main; | |
//@formatter:off | |
@InjectPresenter MainFragmentPresenter mainPresenter; | |
@BindView(R.id.vpMain) NonSwipeableViewPager vpMain; | |
@BindView(R.id.tabLayout) TabLayout tabLayout; |
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
package ru.techmas.touchdriver.fragments; | |
import android.os.Bundle; | |
import android.support.v7.widget.LinearLayoutManager; | |
import android.support.v7.widget.RecyclerView; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.ImageView; |
OlderNewer