Skip to content

Commit

Permalink
delete unuse library 'SystemBarTintManager'
Browse files Browse the repository at this point in the history
  • Loading branch information
shts committed Mar 10, 2015
1 parent b3a9f4e commit e27c90d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 29 deletions.
11 changes: 0 additions & 11 deletions .idea/libraries/systembartint_1_0_3.xml

This file was deleted.

3 changes: 1 addition & 2 deletions app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,13 @@
</content>
<orderEntry type="jdk" jdkName="Android API 21 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="systembartint-1.0.3" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.3" level="project" />
<orderEntry type="library" exported="" name="jsoup-1.7.2" level="project" />
<orderEntry type="library" exported="" name="play-services-6.1.11" level="project" />
<orderEntry type="library" exported="" name="library-1.0.5" level="project" />
<orderEntry type="library" exported="" name="picasso-2.3.3" level="project" />
<orderEntry type="library" exported="" name="Parse-1.8.2" level="project" />
<orderEntry type="library" exported="" name="cardview-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="library-1.0.5" level="project" />
<orderEntry type="library" exported="" name="recyclerview-v7-21.0.3" level="project" />
<orderEntry type="library" exported="" name="android-async-http-1.4.5" level="project" />
<orderEntry type="library" exported="" name="preferencefragment-0.1.1" level="project" />
Expand Down
1 change: 0 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ dependencies {
compile 'com.android.support:recyclerview-v7:21.0.+'
compile 'org.jsoup:jsoup:1.7.2'
compile 'com.jpardogo.materialtabstrip:library:1.0.5'
compile 'com.readystatesoftware.systembartint:systembartint:1.0.3'

compile 'com.parse.bolts:bolts-android:1.+'
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
import android.view.MenuInflater;
import android.view.MenuItem;

import com.readystatesoftware.systembartint.SystemBarTintManager;

import shts.jp.android.nogifeed.NogiFeedApplication;
import shts.jp.android.nogifeed.R;
import shts.jp.android.nogifeed.fragments.AllFeedListFragment;
import shts.jp.android.nogifeed.fragments.FavoriteMemberFeedListFragment;
Expand All @@ -42,7 +39,6 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setupActionBar();
setupStatusBar();
setupViewPager();
}

Expand All @@ -57,17 +53,6 @@ private void setupActionBar() {
getSupportActionBar().setElevation(0);
}

private void setupStatusBar() {
// create our manager instance after the content view is set
SystemBarTintManager tintManager = new SystemBarTintManager(this);
// enable status bar tint
tintManager.setStatusBarTintEnabled(true);
// enable navigation bar tint
tintManager.setNavigationBarTintEnabled(true);
// set a custom navigation bar resource
tintManager.setNavigationBarTintResource(R.color.nogifeed_dark);
}

private void setupViewPager() {
mPagerSlidingTabStrip = (PagerSlidingTabStrip) findViewById(R.id.tabs);
mViewPager = (ViewPager) findViewById(R.id.pager);
Expand Down

0 comments on commit e27c90d

Please sign in to comment.