[PR #103] [MERGED] Nav drawer feature #363

Closed
opened 2026-02-28 01:24:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ushahidi/SMSSync/pull/103
Author: @eyedol
Created: 7/14/2013
Status: Merged
Merged: 7/22/2013
Merged by: @eyedol

Base: developHead: nav-drawer-feature


📝 Commits (10+)

  • 595aca5 Base setup for nav drawer feature
  • 4d6c889 Show counter for number of items in the list view
  • 1a4c9d0 Add test cases for sync url model
  • 7a4201b Add more test cases for sync url model
  • f21d6ec Add test suite. though it's failing to run
  • e25fd71 Show navigation drawer
  • 467ea79 Show number of items in the list view
  • 04273fa Minor clean up to nav drawer item implementation
  • 6ab478d Document nav drawer item classes
  • 18d3fcd Re arrange actionbar menu items

📊 Changes

50 files changed (+1907 additions, -719 deletions)

View changed files

📝 abslib/libs/android-support-v4.jar (+0 -0)
📝 smssync/AndroidManifest.xml (+3 -3)
smssync/res/drawable-hdpi/drawer_shadow.9.png (+0 -0)
smssync/res/drawable-hdpi/ic_drawer.png (+0 -0)
smssync/res/drawable-hdpi/pending.png (+0 -0)
smssync/res/drawable-hdpi/sent.png (+0 -0)
smssync/res/drawable-hdpi/sync_url.png (+0 -0)
smssync/res/drawable-mdpi/drawer_shadow.9.png (+0 -0)
smssync/res/drawable-mdpi/ic_drawer.png (+0 -0)
smssync/res/drawable-mdpi/pending.png (+0 -0)
smssync/res/drawable-mdpi/sent.png (+0 -0)
smssync/res/drawable-mdpi/sync_url.png (+0 -0)
smssync/res/drawable-xhdpi/drawer_shadow.9.png (+0 -0)
smssync/res/drawable-xhdpi/ic_drawer.png (+0 -0)
smssync/res/drawable-xhdpi/pending.png (+0 -0)
smssync/res/drawable-xhdpi/sent.png (+0 -0)
smssync/res/drawable-xhdpi/sync_url.png (+0 -0)
smssync/res/drawable/nav_drawer_selected.xml (+15 -0)
smssync/res/drawable/nav_drawer_selector.xml (+8 -0)
smssync/res/layout/main_activity.xml (+16 -0)

...and 30 more files

📄 Description

  • Added Navigation menu Drawer. Removed The Tab Activity. See #100
  • Added test code for testing SyncUrlModel class

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ushahidi/SMSSync/pull/103 **Author:** [@eyedol](https://github.com/eyedol) **Created:** 7/14/2013 **Status:** ✅ Merged **Merged:** 7/22/2013 **Merged by:** [@eyedol](https://github.com/eyedol) **Base:** `develop` ← **Head:** `nav-drawer-feature` --- ### 📝 Commits (10+) - [`595aca5`](https://github.com/ushahidi/SMSSync/commit/595aca5b68aed40dea83e3d51384f8f3a561eb12) Base setup for nav drawer feature - [`4d6c889`](https://github.com/ushahidi/SMSSync/commit/4d6c8891408228df538dd3af5ffaddbd27cf55f8) Show counter for number of items in the list view - [`1a4c9d0`](https://github.com/ushahidi/SMSSync/commit/1a4c9d03c09afb22ed9fdb756cf12e79c01c40e6) Add test cases for sync url model - [`7a4201b`](https://github.com/ushahidi/SMSSync/commit/7a4201b8c1d038771e3942a21d3c0fb0adff0a3d) Add more test cases for sync url model - [`f21d6ec`](https://github.com/ushahidi/SMSSync/commit/f21d6ec7b05426cc89fbbebb3c216858164694b1) Add test suite. though it's failing to run - [`e25fd71`](https://github.com/ushahidi/SMSSync/commit/e25fd71aaa241d15ca59ed077ad9ef2b33a6ac9d) Show navigation drawer - [`467ea79`](https://github.com/ushahidi/SMSSync/commit/467ea796d5f0fed072c85eaef3e46ee016e37dad) Show number of items in the list view - [`04273fa`](https://github.com/ushahidi/SMSSync/commit/04273faff3e12a313fb70b0e7718cf437cf65b6b) Minor clean up to nav drawer item implementation - [`6ab478d`](https://github.com/ushahidi/SMSSync/commit/6ab478d21dcee93edfd483135aedce35f98e1299) Document nav drawer item classes - [`18d3fcd`](https://github.com/ushahidi/SMSSync/commit/18d3fcdcd87bc6a5ff6b6478f16f5f8e53479697) Re arrange actionbar menu items ### 📊 Changes **50 files changed** (+1907 additions, -719 deletions) <details> <summary>View changed files</summary> 📝 `abslib/libs/android-support-v4.jar` (+0 -0) 📝 `smssync/AndroidManifest.xml` (+3 -3) ➕ `smssync/res/drawable-hdpi/drawer_shadow.9.png` (+0 -0) ➕ `smssync/res/drawable-hdpi/ic_drawer.png` (+0 -0) ➕ `smssync/res/drawable-hdpi/pending.png` (+0 -0) ➕ `smssync/res/drawable-hdpi/sent.png` (+0 -0) ➕ `smssync/res/drawable-hdpi/sync_url.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/drawer_shadow.9.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/ic_drawer.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/pending.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/sent.png` (+0 -0) ➕ `smssync/res/drawable-mdpi/sync_url.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/drawer_shadow.9.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/ic_drawer.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/pending.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/sent.png` (+0 -0) ➕ `smssync/res/drawable-xhdpi/sync_url.png` (+0 -0) ➕ `smssync/res/drawable/nav_drawer_selected.xml` (+15 -0) ➕ `smssync/res/drawable/nav_drawer_selector.xml` (+8 -0) ➕ `smssync/res/layout/main_activity.xml` (+16 -0) _...and 30 more files_ </details> ### 📄 Description - Added Navigation menu Drawer. Removed The Tab Activity. See #100 - Added test code for testing `SyncUrlModel` class --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 01:24:20 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SMSSync#363
No description provided.