当前位置: 首页>>代码示例>>Java>>正文


Java DebugDrawer类代码示例

本文整理汇总了Java中io.palaima.debugdrawer.DebugDrawer的典型用法代码示例。如果您正苦于以下问题:Java DebugDrawer类的具体用法?Java DebugDrawer怎么用?Java DebugDrawer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


DebugDrawer类属于io.palaima.debugdrawer包,在下文中一共展示了DebugDrawer类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_rides_list);

    setupToolbar();
    progressDialogHandler = new ProgressDialogHandler(this);

    RecyclerView recyclerView = findViewById(R.id.ride_list_view);
    rideListAdapter = new RideListAdapter(this, new ArrayList<>());
    recyclerView.setLayoutManager(new LinearLayoutManager(this));

    refreshList();

    recyclerView.setAdapter(rideListAdapter);


    DebugDrawerAddDummyRide debugDrawerAddDummyRide = new DebugDrawerAddDummyRide(this);
    new DebugDrawer.Builder(this)
            .modules(
                    debugDrawerAddDummyRide,
                    new SettingsModule(this)
            ).build();

    getLifecycle().addObserver(debugDrawerAddDummyRide);
}
 
开发者ID:ponewheel,项目名称:android-ponewheel,代码行数:27,代码来源:RidesListActivity.java

示例2: onCreate

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
@Override
protected void onCreate(final Bundle poSavedInstanceState) {
    super.onCreate(poSavedInstanceState);
    setContentView(R.layout.activity_repo_list);

    ApplicationAndroidStarter.sharedApplication().componentApplication().inject(this);

    ButterKnife.bind(this);

    if (mEnvironment.isDebugDrawerEnabled()) {
        mDebugDrawer = new DebugDrawer.Builder(this).modules(
                new FpsModule(Takt.stock(getApplication())),
                new ScalpelModule(this),
                new PicassoModule(mPicasso),
                new DeviceModule(this),
                new BuildModule(this),
                new NetworkModule(this),
                new SettingsModule(this)
        ).build();
    }
}
 
开发者ID:RoRoche,项目名称:AndroidStarter,代码行数:22,代码来源:ActivityRepoList.java

示例3: onCreate

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
@Override
protected void onCreate(final Bundle poSavedInstanceState) {
    super.onCreate(poSavedInstanceState);
    setContentView(R.layout.activity_main);

    ApplicationAndroidStarter.sharedApplication().componentApplication().inject(this);

    ButterKnife.bind(this);

    if (mEnvironment.isDebugDrawerEnabled()) {
        mDebugDrawer = new DebugDrawer.Builder(this).modules(
                new FpsModule(Takt.stock(getApplication())),
                new ScalpelModule(this),
                new PicassoModule(mPicasso),
                new DeviceModule(this),
                new BuildModule(this),
                new NetworkModule(this),
                new SettingsModule(this)
        ).build();
    }

    mRouter = Conductor.attachRouter(this, mViewGroupContainer, poSavedInstanceState);
    if (!mRouter.hasRootController()) {
        mRouter.setRoot(RouterTransaction.with(new ControllerRepoList()));
    }
}
 
开发者ID:RoRoche,项目名称:AndroidStarterAlt,代码行数:27,代码来源:ActivityMain.java

示例4: addDebugDrawer

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
@Override
public void addDebugDrawer(@NonNull Activity activity) {
    new DebugDrawer.Builder(activity).modules(
            new ScalpelModule(activity),
            new OkHttp3Module(mOkHttpClient),
            new PicassoModule(mPicasso),
            new DeviceModule(activity),
            new BuildModule(activity),
            new SettingsModule(activity)
    ).build();
}
 
开发者ID:TryGhost,项目名称:Ghost-Android,代码行数:12,代码来源:DebugSpectreApplication.java

示例5: startUi

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
private void startUi() {
    setContentView(getContentView());
    ButterKnife.bind(this);
    if (BuildConfig.DEBUG) {
        mDebugDrawer = new DebugDrawer.Builder(this).modules(new LogModule(),
                new NetworkModule(this), new OkHttpModule(okHttpClient),
                new PicassoModule(picasso), new ScalpelModule(this), new DeviceModule(this),
                new BuildModule(this), new SettingsModule(this)).build();
    }
}
 
开发者ID:pakoito,项目名称:SongkickInterview,代码行数:11,代码来源:ZimplBaseActivity.java

示例6: onCreate

import io.palaima.debugdrawer.DebugDrawer; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    Log.d(TAG, "Starting...");
    super.onCreate(savedInstanceState);

    mContext = this;


    EventBus.getDefault().register(this);
    // TODO unbind in onPause or whatever is recommended by goog
    bindService(new Intent(this, VibrateService.class), mVibrateConnection, Context.BIND_AUTO_CREATE);

    initWakelock();

    // this line won't compile? File -> Invalidate caches https://stackoverflow.com/a/42824662/247325
    mBinding = DataBindingUtil.setContentView(this, net.kwatts.powtools.R.layout.activity_main);

    alertsController = new AlertsMvpController(this);

    setupDarkModes(savedInstanceState);

    App.INSTANCE.getSharedPreferences().registerListener(this);

    if (!App.INSTANCE.getSharedPreferences().isEulaAgreed()) {
        showEula();
    }

    startService(new Intent(getApplicationContext(), VibrateService.class));

    setupOWDevice();

    setupToolbar();

    mScrollView = findViewById(R.id.logScroller);

    if (App.INSTANCE.getSharedPreferences().isLoggingEnabled()) {
        initLogging();
    }

    mChronometer = findViewById(R.id.chronometer);
    initBatteryChart();
    initLightSettings();
    initRideModeButtons();

    new DebugDrawer.Builder(this)
            .modules(
                    new DebugDrawerMockBle(this),
                    new SettingsModule(this)
            ).build();
}
 
开发者ID:ponewheel,项目名称:android-ponewheel,代码行数:51,代码来源:MainActivity.java


注:本文中的io.palaima.debugdrawer.DebugDrawer类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。