[android] Percent Support Library
https://plus.google.com/+AndroidDevelopers/posts/C8oaLunpEEj
-
PercentFrameLayout, PercentRelativeLayout 이 생겨서 percent 기반한 layouting 을 할 수 있다.
-
<android.support.percent.PercentRelativeLayout>
<ImageView
android:id=”@+id/centered_image”
android:layout_gravity=”center”
app:layout_widthPercent="50%"
app:layout_heightPercent="50%" />
<TextView
android:id=”@+id/caption”
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below=”@id/centered_image”
android:layout_gravity=”center_horizontal”
app:layout_marginStartPercent=”25%”
app:layout_marginEndPercent=”25%” />
</android.support.percent.PercentRelativeLayout>
-
지원하는 attribute 들은..
layout_widthPercent
layout_heightPercent
layout_marginTopPercent
layout_marginBottomPercent
layout_marginLeftPercent
layout_marginRightPercent
layout_marginStartPercent
layout_marginEndPercent
layout_aspectRatio
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] Android 6.0(MOS) SDK 에서 바뀐 것들!! (0) | 2017.09.18 |
---|---|
[android] Doze 모드와 App standby 모드 + GCM High priority message (2) | 2017.09.17 |
[android] Tinting drawables (0) | 2017.09.15 |
[android] 배경 딤처리하기 (0) | 2017.09.06 |
[android] VSYNC & Choreographer - Butter Project (1) | 2017.09.05 |
댓글