Allow to go back to search results list
This commit is contained in:
parent
e9fa84af58
commit
dc3b124e0b
|
@ -71,6 +71,7 @@ public class MainActivity extends CastEnabledActivity {
|
||||||
public static final String EXTRA_FEED_ID = "fragment_feed_id";
|
public static final String EXTRA_FEED_ID = "fragment_feed_id";
|
||||||
public static final String EXTRA_OPEN_PLAYER = "open_player";
|
public static final String EXTRA_OPEN_PLAYER = "open_player";
|
||||||
public static final String EXTRA_REFRESH_ON_START = "refresh_on_start";
|
public static final String EXTRA_REFRESH_ON_START = "refresh_on_start";
|
||||||
|
public static final String EXTRA_STARTED_FROM_SEARCH = "started_from_search";
|
||||||
|
|
||||||
private @Nullable DrawerLayout drawerLayout;
|
private @Nullable DrawerLayout drawerLayout;
|
||||||
private @Nullable ActionBarDrawerToggle drawerToggle;
|
private @Nullable ActionBarDrawerToggle drawerToggle;
|
||||||
|
@ -477,8 +478,12 @@ public class MainActivity extends CastEnabledActivity {
|
||||||
if (tag != null) {
|
if (tag != null) {
|
||||||
loadFragment(tag, args);
|
loadFragment(tag, args);
|
||||||
} else if (feedId > 0) {
|
} else if (feedId > 0) {
|
||||||
|
if (intent.getBooleanExtra(EXTRA_STARTED_FROM_SEARCH, false)) {
|
||||||
|
loadChildFragment(FeedItemlistFragment.newInstance(feedId));
|
||||||
|
} else {
|
||||||
loadFeedFragmentById(feedId, args);
|
loadFeedFragmentById(feedId, args);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
sheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
|
sheetBehavior.setState(BottomSheetBehavior.STATE_COLLAPSED);
|
||||||
} else if (intent.getBooleanExtra(EXTRA_OPEN_PLAYER, false)) {
|
} else if (intent.getBooleanExtra(EXTRA_OPEN_PLAYER, false)) {
|
||||||
sheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
|
sheetBehavior.setState(BottomSheetBehavior.STATE_EXPANDED);
|
||||||
|
|
|
@ -508,6 +508,8 @@ public class OnlineFeedViewActivity extends AppCompatActivity {
|
||||||
// feed.getId() is always 0, we have to retrieve the id from the feed list from
|
// feed.getId() is always 0, we have to retrieve the id from the feed list from
|
||||||
// the database
|
// the database
|
||||||
Intent intent = MainActivity.getIntentToOpenFeed(this, getFeedId(feed));
|
Intent intent = MainActivity.getIntentToOpenFeed(this, getFeedId(feed));
|
||||||
|
intent.putExtra(MainActivity.EXTRA_STARTED_FROM_SEARCH,
|
||||||
|
getIntent().getBooleanExtra(MainActivity.EXTRA_STARTED_FROM_SEARCH, false));
|
||||||
finish();
|
finish();
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ import android.widget.GridView;
|
||||||
import android.widget.ProgressBar;
|
import android.widget.ProgressBar;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
import de.danoeh.antennapod.R;
|
import de.danoeh.antennapod.R;
|
||||||
|
import de.danoeh.antennapod.activity.MainActivity;
|
||||||
import de.danoeh.antennapod.activity.OnlineFeedViewActivity;
|
import de.danoeh.antennapod.activity.OnlineFeedViewActivity;
|
||||||
import de.danoeh.antennapod.adapter.itunes.ItunesAdapter;
|
import de.danoeh.antennapod.adapter.itunes.ItunesAdapter;
|
||||||
import de.danoeh.antennapod.discovery.PodcastSearchResult;
|
import de.danoeh.antennapod.discovery.PodcastSearchResult;
|
||||||
|
@ -101,6 +102,7 @@ public class OnlineSearchFragment extends Fragment {
|
||||||
PodcastSearchResult podcast = searchResults.get(position);
|
PodcastSearchResult podcast = searchResults.get(position);
|
||||||
Intent intent = new Intent(getActivity(), OnlineFeedViewActivity.class);
|
Intent intent = new Intent(getActivity(), OnlineFeedViewActivity.class);
|
||||||
intent.putExtra(OnlineFeedViewActivity.ARG_FEEDURL, podcast.feedUrl);
|
intent.putExtra(OnlineFeedViewActivity.ARG_FEEDURL, podcast.feedUrl);
|
||||||
|
intent.putExtra(MainActivity.EXTRA_STARTED_FROM_SEARCH, true);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
});
|
});
|
||||||
progressBar = root.findViewById(R.id.progressBar);
|
progressBar = root.findViewById(R.id.progressBar);
|
||||||
|
|
|
@ -104,6 +104,7 @@ public abstract class PodcastListFragment extends Fragment {
|
||||||
Log.d(TAG, "Selected podcast: " + selection.toString());
|
Log.d(TAG, "Selected podcast: " + selection.toString());
|
||||||
Intent intent = new Intent(getActivity(), OnlineFeedViewActivity.class);
|
Intent intent = new Intent(getActivity(), OnlineFeedViewActivity.class);
|
||||||
intent.putExtra(OnlineFeedViewActivity.ARG_FEEDURL, selection.getUrl());
|
intent.putExtra(OnlineFeedViewActivity.ARG_FEEDURL, selection.getUrl());
|
||||||
|
intent.putExtra(MainActivity.EXTRA_STARTED_FROM_SEARCH, true);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue