2017-02-21 03:32:10 +01:00
|
|
|
/* Copyright 2017 Andrew Dawson
|
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* This file is a part of Tusky.
|
2017-02-21 03:32:10 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-02-21 03:32:10 +01:00
|
|
|
*
|
|
|
|
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-04-10 02:12:31 +02:00
|
|
|
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
* Public License for more details.
|
2017-02-21 03:32:10 +01:00
|
|
|
*
|
2017-04-10 02:12:31 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along with Tusky; if not,
|
|
|
|
* see <http://www.gnu.org/licenses>. */
|
2017-02-21 03:32:10 +01:00
|
|
|
|
|
|
|
package com.keylesspalace.tusky;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.v4.app.Fragment;
|
|
|
|
import android.support.v4.app.FragmentTransaction;
|
|
|
|
import android.support.v7.app.ActionBar;
|
|
|
|
import android.support.v7.widget.Toolbar;
|
2017-03-09 18:09:32 +01:00
|
|
|
import android.view.MenuItem;
|
2017-02-21 03:32:10 +01:00
|
|
|
|
2017-05-05 00:55:34 +02:00
|
|
|
import com.keylesspalace.tusky.fragment.TimelineFragment;
|
2017-04-30 08:30:45 +02:00
|
|
|
|
2018-03-27 19:47:00 +02:00
|
|
|
import javax.inject.Inject;
|
|
|
|
|
|
|
|
import dagger.android.AndroidInjector;
|
|
|
|
import dagger.android.DispatchingAndroidInjector;
|
|
|
|
import dagger.android.support.HasSupportFragmentInjector;
|
|
|
|
|
2018-05-06 22:05:54 +02:00
|
|
|
public class FavouritesActivity extends BottomSheetActivity implements HasSupportFragmentInjector {
|
2018-03-27 19:47:00 +02:00
|
|
|
|
|
|
|
@Inject
|
|
|
|
public DispatchingAndroidInjector<Fragment> dispatchingAndroidInjector;
|
|
|
|
|
2017-02-21 03:32:10 +01:00
|
|
|
@Override
|
|
|
|
protected void onCreate(@Nullable Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setContentView(R.layout.activity_favourites);
|
|
|
|
|
2017-10-18 00:20:26 +02:00
|
|
|
Toolbar toolbar = findViewById(R.id.toolbar);
|
2017-02-21 03:32:10 +01:00
|
|
|
setSupportActionBar(toolbar);
|
|
|
|
ActionBar bar = getSupportActionBar();
|
|
|
|
if (bar != null) {
|
|
|
|
bar.setTitle(getString(R.string.title_favourites));
|
2017-03-09 18:09:32 +01:00
|
|
|
bar.setDisplayHomeAsUpEnabled(true);
|
|
|
|
bar.setDisplayShowHomeEnabled(true);
|
2017-02-21 03:32:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
|
|
|
|
Fragment fragment = TimelineFragment.newInstance(TimelineFragment.Kind.FAVOURITES);
|
2017-07-28 16:11:01 +02:00
|
|
|
fragmentTransaction.replace(R.id.fragment_container, fragment);
|
2017-02-21 03:32:10 +01:00
|
|
|
fragmentTransaction.commit();
|
|
|
|
}
|
2017-03-09 18:09:32 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
switch (item.getItemId()) {
|
|
|
|
case android.R.id.home: {
|
|
|
|
onBackPressed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return super.onOptionsItemSelected(item);
|
|
|
|
}
|
2018-03-27 19:47:00 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public AndroidInjector<Fragment> supportFragmentInjector() {
|
|
|
|
return dispatchingAndroidInjector;
|
|
|
|
}
|
2018-05-06 22:05:54 +02:00
|
|
|
|
2017-02-21 03:32:10 +01:00
|
|
|
}
|