86 lines
2.6 KiB
XML
86 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/ambilwarna_viewContainer"
|
|
android:paddingTop="@dimen/ambilwarna_spacer"
|
|
android:paddingRight="@dimen/ambilwarna_spacer"
|
|
android:paddingBottom="0dp"
|
|
android:paddingLeft="@dimen/ambilwarna_spacer"
|
|
android:clipToPadding="false"
|
|
android:layout_gravity="center"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/ambilwarna_state"
|
|
android:orientation="vertical"
|
|
android:paddingRight="@dimen/ambilwarna_spacer"
|
|
android:gravity="center"
|
|
android:layout_centerVertical="true"
|
|
>
|
|
<View
|
|
android:layout_width="60dp"
|
|
android:layout_height="30dp"
|
|
android:id="@+id/ambilwarna_warnaLama"
|
|
android:background="#faa"
|
|
/>
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ambilwarna_arrow_down"
|
|
android:paddingTop="@dimen/ambilwarna_spacer"
|
|
android:paddingBottom="@dimen/ambilwarna_spacer"
|
|
/>
|
|
<View
|
|
android:layout_width="60dp"
|
|
android:layout_height="30dp"
|
|
android:id="@+id/ambilwarna_warnaBaru"
|
|
android:background="#aaf"
|
|
/>
|
|
</LinearLayout>
|
|
<yuku.ambilwarna.AmbilWarnaKotak
|
|
android:id="@+id/ambilwarna_viewSatBri"
|
|
android:layout_width="@dimen/ambilwarna_hsvWidth"
|
|
android:layout_height="@dimen/ambilwarna_hsvHeight"
|
|
android:layout_toRightOf="@id/ambilwarna_state"
|
|
/>
|
|
<!-- android:layerType="software" -->
|
|
<!-- needed because i can't get parent keeping its bottom layout
|
|
and its wrap_content height. This view will serve as a bottom spacer. -->
|
|
<View
|
|
android:layout_width="@dimen/ambilwarna_spacer"
|
|
android:layout_height="@dimen/ambilwarna_spacer"
|
|
android:layout_below="@id/ambilwarna_viewSatBri"
|
|
/>
|
|
<ImageView
|
|
android:id="@+id/ambilwarna_viewHue"
|
|
android:layout_width="@dimen/ambilwarna_hueWidth"
|
|
android:layout_height="@dimen/ambilwarna_hsvHeight"
|
|
android:layout_toRightOf="@id/ambilwarna_viewSatBri"
|
|
android:layout_marginLeft="@dimen/ambilwarna_spacer"
|
|
android:src="@drawable/ambilwarna_hue"
|
|
android:scaleType="fitXY"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/ambilwarna_cursor"
|
|
android:layout_width="9dp"
|
|
android:layout_height="9dp"
|
|
android:src="@drawable/ambilwarna_cursor"
|
|
android:scaleType="matrix"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/ambilwarna_target"
|
|
android:layout_width="15dp"
|
|
android:layout_height="15dp"
|
|
android:src="@drawable/ambilwarna_target"
|
|
android:scaleType="matrix"
|
|
/>
|
|
|
|
|
|
</RelativeLayout>
|