本文整理汇总了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);
}
示例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();
}
}
示例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()));
}
}
示例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();
}
示例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();
}
}
示例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();
}