是否可以手动缩进可折叠列表视图的子视图?我正在使用具有组布局和子布局的自定义适配器如何在组选择时缩进子视图?
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/drawer_content_padding"/>
<!-- The navigation drawer -->
!-- The main content view -->
<RelativeLayout
android:id="@+id/mainContent"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->
<RelativeLayout
android:layout_width="@dimen/drawer_size"
android:layout_height="match_parent"
android:id="@+id/container"
android:layout_gravity="start">
<ExpandableListView
android:id="@+id/nav_drawer"
android:layout_width="280dp"
android:padding="15dp"
android:layout_height="wrap_content"
android:choiceMode="singleChoice"
android:scrollbars="none"
android:background="#fff"
android:groupIndicator="@android:color/transparent"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
</RelativeLayout>
答案 0 :(得分:0)
您可以从自定义适配器执行此操作。只需在子视图中添加填充
convertView.setPadding(20,0,0,0); // left, top, right, bottom
答案 1 :(得分:0)
我实际上通过缩进字符串
中的菜单项名称来解决这个问题即缩进
    
在菜单名称缩进之前。