본문 바로가기

Matpclub/Theme Study

[SystemUI]퀵패널 양 옆 빈공간 사이즈 조절하기

1. 수정 대상

 

  - layout / tw_status_bar.xml

 

2. 수정 내용

 

 

 1.  왼쪽 사이드 줄이기

 

<LinearLayout android:orientation="horizontal" android:id="@id/left_icons" android:paddingLeft="1.0dip" android:layout_width="0.0dip" android:layout_height="fill_parent" android:layout_weight="1.0">

 

위와 같이 되어 있는 left_icons를 찾아주세요.

paddingLeft의 사이즈를 원하는 만큼 조정해 주세요.

기본으로 잡혀있는 사이즈는 4.0dip입니다.

 

 2.  오른쪽 사이드 줄이기

 

 <LinearLayout android:orientation="horizontal" android:id="@id/right_icons" android:paddingRight="1.0dip" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_alignParentRight="true">

 

위와 같이 되어 있는 right_icons를 찾아주세요.

paddingLeft의 사이즈를 원하는 만큼 조정해 주세요.

기본으로 잡혀있는 사이즈는 4.0dip입니다.

 

 

3. Screen Shot