Back to project page DraggablePanel.
The source code is released under:
Apache License
If you think the Android project DraggablePanel listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 Pedro Vicente Gmez Snchez. *// ww w. jav a2s . c o m * 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.github.pedrovgs.sample.di; import android.app.Application; import android.content.Context; import android.view.LayoutInflater; import com.github.pedrovgs.sample.DraggablePanelApplication; import com.github.pedrovgs.sample.activity.PlacesSampleActivity; import com.github.pedrovgs.sample.activity.TvShowsActivity; import com.github.pedrovgs.sample.renderer.PlaceRenderer; import com.github.pedrovgs.sample.renderer.TvShowRenderer; import com.github.pedrovgs.sample.renderer.rendererbuilder.PlacesCollectionRendererBuilder; import com.github.pedrovgs.sample.renderer.rendererbuilder.TvShowCollectionRendererBuilder; import com.github.pedrovgs.sample.viewmodel.PlaceCollectionViewModel; import com.github.pedrovgs.sample.viewmodel.PlaceViewModel; import com.github.pedrovgs.sample.viewmodel.TvShowCollectionViewModel; import com.github.pedrovgs.sample.viewmodel.TvShowViewModel; import com.pedrogomez.renderers.Renderer; import com.pedrogomez.renderers.RendererAdapter; import dagger.Module; import dagger.Provides; import java.util.LinkedList; import java.util.List; /** * MainModule created to provide the most important dependencies for this sample project * * @author Pedro Vicente Gmez Snchez. */ @Module(injects = { PlacesSampleActivity.class, TvShowsActivity.class, DraggablePanelApplication.class}) public class MainModule { private final Application application; public MainModule(Application application) { this.application = application; } /** * Provisioning of a LayoutInflater instance obtained from the application context. * * @return */ @Provides protected LayoutInflater provideLayoutInflater() { return LayoutInflater.from(application.getBaseContext()); } /** * Provisioning of the base context obtained from the application. * * @return */ @Provides protected Context provideContext() { return this.application.getBaseContext(); } /** * Provisioning of a RendererBuilder implementation to work with places ListView. More information in this library: * {@link https://github.com/pedrovgs/Renderers} * * @param context * @return */ @Provides protected PlacesCollectionRendererBuilder providePlaceCollectionRendererBuilder(Context context) { List<Renderer<PlaceViewModel>> prototypes = new LinkedList<Renderer<PlaceViewModel>>(); prototypes.add(new PlaceRenderer(context)); return new PlacesCollectionRendererBuilder(prototypes); } /** * Provisioning of a RendererAdapter implementation to work with places ListView. More information in this library: * {@link https://github.com/pedrovgs/Renderers} * * @param layoutInflater * @param placesCollectionRendererBuilder * @param placeCollectionViewModel * @return */ @Provides protected RendererAdapter<PlaceViewModel> providePlacesRendererAdapter(LayoutInflater layoutInflater, PlacesCollectionRendererBuilder placesCollectionRendererBuilder, PlaceCollectionViewModel placeCollectionViewModel) { return new RendererAdapter<PlaceViewModel>(layoutInflater, placesCollectionRendererBuilder, placeCollectionViewModel); } /** * Provisioning of a RendererBuilder implementation to work with tv shows ListView. More information in this library: * {@link https://github.com/pedrovgs/Renderers} * * @param context * @return */ @Provides protected TvShowCollectionRendererBuilder provideTvShowCollectionRendererBuilder(Context context) { List<Renderer<TvShowViewModel>> prototypes = new LinkedList<Renderer<TvShowViewModel>>(); prototypes.add(new TvShowRenderer(context)); return new TvShowCollectionRendererBuilder(prototypes); } /** * Provisioning of a RendererAdapter implementation to work with tv shows ListView. More information in this library: * {@link https://github.com/pedrovgs/Renderers} * * @param layoutInflater * @param tvShowCollectionRendererBuilder * @param tvShowCollectionViewModel * @return */ @Provides protected RendererAdapter<TvShowViewModel> provideTvShowRendererAdapter(LayoutInflater layoutInflater, TvShowCollectionRendererBuilder tvShowCollectionRendererBuilder, TvShowCollectionViewModel tvShowCollectionViewModel) { return new RendererAdapter<TvShowViewModel>(layoutInflater, tvShowCollectionRendererBuilder, tvShowCollectionViewModel); } }