Skip to content

Commit

Permalink
[Feature] Comment out calendar entries.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghai committed May 18, 2018
1 parent ad1ef99 commit 32298fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,14 @@
</intent-filter>
</receiver>

<receiver android:name=".calendar.app.CalendarAppWidgetProvider" >
<!--<receiver android:name=".calendar.app.CalendarAppWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/calendar_appwidget" />
</receiver>
</receiver>-->

<receiver
android:name=".network.api.credential.SetApiCredentialReceiver"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ public void onDrawerClosed(View drawerView) {
// TODO
UriHandler.open("https://music.douban.com/", getActivity());
break;
case R.id.navigation_calendar:
openCalendar();
break;
//case R.id.navigation_calendar:
// openCalendar();
// break;
case R.id.navigation_settings:
openSettings();
break;
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/menu/navigation.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
</group>

<!-- Set an id on this group to show a divider. -->
<group android:id="@+id/navigation_group_secondary" >
<!--<group android:id="@+id/navigation_group_secondary" >
<item
android:id="@+id/navigation_calendar"
android:icon="@drawable/event_note_icon_white_24dp"
android:title="@string/navigation_calendar" />
</group>
</group>-->

<!-- Set an id on this group to show a divider. -->
<group android:id="@+id/navigation_group_tertiary" >
Expand Down

0 comments on commit 32298fd

Please sign in to comment.