例如,我可以使用以下方法操作 ADB 调试:
Settings.Secure.putInt(getActivity().getContentResolver(),Settings.Secure.ADB_ENABLED, 1);
是否可以以类似的方式启用“显示布局边界”选项?我还没有找到任何关于它的文档。
例如,我可以使用以下方法操作 ADB 调试:
Settings.Secure.putInt(getActivity().getContentResolver(),Settings.Secure.ADB_ENABLED, 1);
是否可以以类似的方式启用“显示布局边界”选项?我还没有找到任何关于它的文档。
不,AFAIK 它不可用。然而,我所做的一件事是给我的所有视图着色,以查看它们的绑定位置和重叠位置等。您可以使用此代码,该代码使用droidQuery库来选择所有要迭代的视图:
public static void debugLayout(View layout)
{
$.with(layout).selectAll().each(new Function() {
@Override
public void invoke($ d, Object... args) {
View v = d.view(0);
Drawable drawable = v.getBackground();
if (drawable != null)
drawable.setColorFilter(0xAAFF0000, PorterDuff.Mode.MULTIPLY);
else
drawable = new ColorDrawable(0xAAFF0000);
try {
//API 16+
v.setBackground(drawable);
}
catch (Throwable t) {
v.setBackgroundDrawable(drawable);
}
}
});
}
您可以做一些事情来模拟设置代码的实际作用:
https ://github.com/android/platform_packages_apps_settings/blob/master/src/com/android/settings/DevelopmentSettings.java#L942
private void writeDebugLayoutOptions() {
SystemProperties.set(View.DEBUG_LAYOUT_PROPERTY,
mDebugLayout.isChecked() ? "true" : "false");
pokeSystemProperties();
}