I have an application that has got two basic screens, a home page and a sliding drawer menu fragment to the left of home page like the facebook sliding drawer. Now I am planning to create another page to the right of the home page that appears by sliding to the other side. i would like to create this as a library project and just import it to the existing project. how can I do this. I need to display the the new menu drawer on sliding after adding the library project. How can I achieve this ? That is, I will be having a fragment in the library project that populates data by all necessary api calls from server, and I need to inflate the fragment by sliding in the main project.
Creating library project and integrating into existing project in android
258 Views Asked by user1002448 At
2
There are 2 best solutions below
0
DigCamara
On
I find that vogella's site has some pretty good tutorials. For instance, this tutorial on Android library projects.
I hope this is what you're looking for ;)
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in FRAGMENT
- Android FragmentViewPager in Fragment
- How to remove Fragments from backstack
- Error:(24, 51) error: incompatible types: FragmentAcitvity cannot be converted to Fragment
- putSerializable in fragment
- How can I implement a delete button in a ListView and delete from database?
- (Viewpager Adapter) getSupportFragmentManager() returns NULL
- Fragment doesn't show properly in ViewPager
- Horizontal Colored ProgressBar in Android ListView
- Setting view in constructor Android with fragment
- how to avoid creating the loop with the fragment backstack
- Create a fragment in fragment at childFragmentManager
- Back Button from Fragment to an another Fragment
- android with viewpager When i click on Button in the first fragment I want the app to navigate to another activity
- Fragment created again, android?
- I can't get data from edittext in fragment after I replace fragment
Related Questions in ANDROID-LIBRARY
- Wrong xml being inflated android
- android.support.v7.app.ActionBarActivity cannot be resolved
- Error inflating class fragment- Android Google Map Api V2
- UNEXPECTED TOP_LEVEL EXCEPTION Multiple dex files define Landroid/support/annotation/AnimRes
- Cannot resolve symbol AppCompatActivity - Support v7 libraries aren't recognized?
- Can't use RecyclerView in my Android library project
- Rebound library facebook
- How to edit the code of a library imported with Gradle in Android Studio?
- Compiled .jar file not working properly
- Issues when i integrate google sign in option to my application in android studio 1.2.2
- Plugin with id 'com.android.library' not found
- How to include GitHut library in my project (Android Studio)
- Bintray 405 not allowed nginx
- How to create an android library from a package on eclipse?
- How does publishing android libraries that can be imported easily by other people work?
Related Questions in SLIDINGDRAWER
- put linearlayout under sliding drawer
- Sliding menu: closed, half-opened and opened
- How to implement a Navigation Drawer at the top of the screen instead of showing from the sides
- Android Navigation view: Scroll the menu items only issue
- Android SlidingDrawer is opened by default
- How to make a Persistent Navigation Drawer in Android?
- How to programmatically setLockDrawerMode
- create android Sliding Menu like Flipkart(IOS App)
- Sliding Drawer clickable contents while semi open
- Two buttons to animate bottom drawer?
- How to set holoeverywhere slider menu width (addonSlider)?
- Creating library project and integrating into existing project in android
- I want to do this in my layout of android
- Show clicked Item highlighted in Navigation Drawer Android
- Sliding activity from right to left like menu slider android
Related Questions in LIBRARY-PROJECT
- To check or not to check "IsLibrary"?
- Android Library dependent on another lib provided by the Android App
- Creating library project and integrating into existing project in android
- How to use a library project in android studio
- "Library projects" in iOS
- Importing library project in Android Studio
- How to work apktool build with library project?
- Maven compiling with wrong version of android
- Why can't a .aidl be placed into a library project?
- how to create and export to jar a library project that contains custom views
- Import module to gradle project on android studio 0.4.0v
- How to use github project as library in eclipse
- How to include library project in library project in Android Studio
- NDK is looking into wrong directory
- Add Google Play service to an Android library project in Android studio
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Saying all this in a paragraph is very simple.
First of all android does not provide Left and Right drawers. There is a custom project on github containing both left and right navigation drawers.
Now, you need to put some effort first, putting some code, some tutorials which you followed, and do you have a library project containing the right drawer ?