0
페르시아어 앱을 만들고 있는데 이것은 내 DrawerLayout이지만 서랍 아이콘과 제목 사이에 너무 많은 공간이있어서 어떻게 줄일 수 있습니까?서랍 아이콘과 제목 사이에 여백을 설정하십시오.
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
private void ForceRTLIfSupported(){
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1){
getWindow().getDecorView.setLayoutDirection(View.LAYOUT_DIRECTION_RTL);
}}
레이아웃 코드 RTL
응용 프로그램을 만들기 위해이 코드를 사용하는 방법에 의해 근무하지 않았다 :<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/appbar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
android:theme="@style/NavigationTheme"
app:headerLayout="@layout/main_nav_header" app:menu="@menu/main_activity_drawer"/>
</android.support.v4.widget.DrawerLayout>
당신은 당신의 레이아웃 코드를 추가 할 수 있습니다 –