/* * Copyright 2014 sonaive.com. All rights reserved. * * 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.sonaive.v2ex.ui; import android.content.Intent; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.support.v7.widget.RecyclerView; import android.view.Menu; import android.view.MenuItem; import android.view.View; import com.sonaive.v2ex.R; import com.sonaive.v2ex.sync.SyncHelper; import com.sonaive.v2ex.sync.api.Api; import com.sonaive.v2ex.ui.widgets.DrawShadowFrameLayout; import com.sonaive.v2ex.util.UIUtils; import static com.sonaive.v2ex.util.LogUtils.makeLogTag; /** * Created by liutao on 12/15/14. */ public class NodesActivity extends BaseActivity { private static final String TAG = makeLogTag(NodesActivity.class); private DrawShadowFrameLayout mDrawShadowFrameLayout; private View mButterBar; private NodesFragment mFrag; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_nodes); mButterBar = findViewById(R.id.butter_bar); mDrawShadowFrameLayout = (DrawShadowFrameLayout) findViewById(R.id.main_content); overridePendingTransition(0, 0); registerHideableHeaderView(findViewById(R.id.headerbar)); syncResource(); } @Override protected void onPostCreate(Bundle savedInstanceState) { super.onPostCreate(savedInstanceState); enableActionBarAutoHide((RecyclerView) findViewById(R.id.recycler_view)); } @Override protected void onResume() { super.onResume(); invalidateOptionsMenu(); mFrag = (NodesFragment) getFragmentManager().findFragmentById(R.id.nodes_fragment); if (mFrag != null) { // configure images fragment's top clearance to take our overlaid controls (Action Bar // ) into account. int actionBarSize = UIUtils.calculateActionBarSize(this); mDrawShadowFrameLayout.setShadowTopOffset(actionBarSize); mFrag.setContentTopClearance(actionBarSize); } updateFragContentTopClearance(); enableDisableSwipeRefresh(true); } @Override public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); getMenuInflater().inflate(R.menu.nodes, menu); MenuItem refreshMenu = menu.findItem(R.id.menu_refresh); if (isRefreshing()) { refreshMenu.setVisible(true); refreshMenu.setActionView(R.layout.progress_bar); } return true; } @Override public boolean onOptionsItemSelected(MenuItem item) { if (item.getItemId() == R.id.menu_search) { Intent intent = SearchActivity.getCallingIntent(this, SearchActivity.EXTRA_SEARCH_NODES); startActivity(intent); return true; } return super.onOptionsItemSelected(item); } @Override public boolean canSwipeRefreshChildScrollUp() { if (mFrag != null) { return mFrag.canRecyclerViewScrollUp(); } return super.canSwipeRefreshChildScrollUp(); } @Override protected void onActionBarAutoShowOrHide(boolean shown) { super.onActionBarAutoShowOrHide(shown); mDrawShadowFrameLayout.setShadowVisible(shown, shown); } @Override protected int getSelfNavDrawerItem() { return NAVDRAWER_ITEM_NODES; } @Override protected void requestDataRefresh() { super.requestDataRefresh(); syncResource(); } public void syncResource() { Bundle args = new Bundle(); args.putString(Api.ARG_API_NAME, Api.API_NODES_ALL); SyncHelper.requestManualSync(this, args); } // Updates the Sessions fragment content top clearance to take our chrome into account private void updateFragContentTopClearance() { mFrag = (NodesFragment) getFragmentManager().findFragmentById( R.id.nodes_fragment); if (mFrag == null) { return; } final boolean butterBarVisible = mButterBar != null && mButterBar.getVisibility() == View.VISIBLE; int actionBarClearance = UIUtils.calculateActionBarSize(this); int butterBarClearance = butterBarVisible ? getResources().getDimensionPixelSize(R.dimen.butter_bar_height) : 0; setProgressBarTopWhenActionBarShown(actionBarClearance + butterBarClearance); mDrawShadowFrameLayout.setShadowTopOffset(actionBarClearance + butterBarClearance); mFrag.setContentTopClearance(actionBarClearance + butterBarClearance); } }