如何删除空间Mikepenz Material Drawer。我使用了自定义布局的配置文件菜单和抽屉项目。我没有为这些视图设置边距或填充。我还尝试将活动水平边距设为0。 帮助将不胜感激。同样的保证金右边也。个人资料菜单确定。它没有任何问题。而对于问题,没有任何问题。
下面的代码是个人资料菜单
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="30dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/imgUserProfileImage"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_margin="@dimen/min_margin"
android:src="@drawable/parent" />
<com.CustomTextView
android:id="@+id/txtUserName"
style="@style/label_text_primary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="10dp"
android:text="Noorul"
app:font="@string/montserrat_semi_bold" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="0.3dp"
android:layout_marginTop="@dimen/min_margin"
android:layout_marginLeft="@dimen/min_margin"
android:background="#999999" />
</LinearLayout>
</LinearLayout>
以下代码适用于抽屉物品菜单
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/lnrSecond_menu"
android:layout_width="match_parent"
android:layout_height="@dimen/material_drawer_item_secondary"
android:orientation="horizontal">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent">
<View
android:id="@+id/view"
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="@color/primary"
android:visibility="gone"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center">
<ImageView
android:id="@+id/material_drawer_icon"
android:layout_width="@dimen/profile_img"
android:layout_height="@dimen/profile_img"
android:padding="@dimen/most_most_normal_margin"
android:src="@mipmap/ic_launcher" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical|start"
android:orientation="vertical">
<com.CustomTextView
android:id="@+id/material_drawer_name"
style="@style/label_text_secondary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|start"
android:textDirection="anyRtl"
android:text="Some Secondary Text"
app:font="@string/montserrat_regular"
/>
<com.CustomTextView
android:id="@+id/material_drawer_description"
style="@style/label_text_secondary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:visibility="gone"
app:font="@string/montserrat_regular"
android:text="Some drawer text" />
</LinearLayout>
<LinearLayout
android:id="@+id/material_drawer_badge_container"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="right|center">
<com.CustomTextView
android:id="@+id/txtMenuBadge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/min_margin"
android:gravity="center"
android:text="99" />
</LinearLayout>
</LinearLayout>
我犯了错误?帮助我,我将感激你们。
答案 0 :(得分:4)
抽屉会添加此padding
,因为它是Material Design Guidelines
内所有项目的默认值。由于API 17存在问题,我必须在此行中以编程方式设置:
https://github.com/mikepenz/MaterialDrawer/blob/develop/library/src/main/java/com/mikepenz/materialdrawer/model/BasePrimaryDrawerItem.java#L104
您可能还想发布您使用的DrawerItem
,因为屏幕截图看起来不像您使用默认项目。
如果你已经创建了自己的CustomDrawerItem
,你只想再次将填充设置为0px(如果你从BasePrimaryDrawerItem
延伸)如果你没有从它延伸,你应该没问题。
抽屉不会在此处以外的任何位置设置此填充。