我首先要清楚 - 我不想关闭/隐藏抽屉。这是微不足道的。我想完全删除它。
我继承了一个项目,我们使用了一个' Debug Drawer' - 在调试版本中显示但不在生产应用程序中显示的抽屉。布局如下。将ScrollView设为visibility="gone"
无效。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout_root"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout android:id="@+id/activity_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView android:id="@+id/debug_drawer"
android:visibility="gone"
android:layout_width="290dp"
android:layout_height="match_parent"
android:layout_gravity="end" />
<fragment android:id="@+id/navigation_drawer"
android:name="com.app.NavigationFragment"
android:layout_width="290dp"
android:layout_height="match_parent"
android:layout_gravity="start" />
</android.support.v4.widget.DrawerLayout>
我尝试了以下内容但没有成功
@Override
public void setContentView(int layoutResID) {
super.setContentView(R.layout.activity_layout);
if (BuildConfig.DEBUG) {
final ViewGroup debugDrawerContainer = findById(this, R.id.debug_drawer);
debugDrawerContainer.setVisibility(View.VISIBLE);
}
}
答案 0 :(得分:0)
我现在找到了一种方法,如下所示。
这是一个黑客,如果你有选择,更好的方法是创建另一个带有标志的构建变体来禁用抽屉(即告诉android不在第一个地方创建抽屉时不在调试,如blackbelt建议的那样
final ViewGroup debugDrawerContainer = findById(this, R.id.debug_drawer);
if (BuildConfig.DEBUG) {
...
} else {
((ViewGroup) debugDrawerContainer.getParent()).removeView(debugDrawerContainer);
}