/*
* Copyright (c) 2014-2016 Sean Liu.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.baoti.pioneer.ui.login;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.github.baoti.android.presenter.FragmentView;
import com.github.baoti.pioneer.R;
import com.github.baoti.pioneer.ui.Navigator;
import butterknife.BindView;
import butterknife.ButterKnife;
/**
* Created by liuyedong on 14-12-18.
*/
public class LoginFragment extends FragmentView<ILoginView, LoginPresenter>
implements LoginViewDelegate.Delegator {
private static LoginFragment newInstance() {
return new LoginFragment();
}
@BindView(R.id.app_toolbar)
Toolbar appBar;
@Override
protected ILoginView createViewDelegate() {
return new LoginViewDelegate(getView(), this);
}
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_login, container, false);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
ButterKnife.bind(this, view);
Navigator.setupToolbarNavigation(this, appBar);
super.onViewCreated(view, savedInstanceState);
}
@Override
public void setTitle(LoginViewDelegate delegate, CharSequence title) {
appBar.setTitle(R.string.title_login);
}
@Override
public void close(LoginViewDelegate delegate) {
getActivity().onBackPressed();
}
}