我想创建一个这样的布局:
我有3个不同的图像:背景,白色方块和V形符号。
如果我希望盒子从一侧移动到另一侧,我如何在照片中定位它们
并且当触发onClick时,V符号将淡入\ out。
我试过了:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/off_background">
<ImageView
android:id="@+id/handle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/handle"
android:scaleType="centerInside" />
<ImageView android:id="@+id/switch_v"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/switch_v"
android:layout_gravity="center"
android:scaleType="centerInside"/>
</RelativeLayout>
正确地给了我订单,但没有正确提出:
答案 0 :(得分:0)
您必须使用layout_align
来解决此问题。我已经为你的例子测试了它,它运行正常。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/off_background" >
<ImageView
android:id="@+id/handle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:scaleType="centerInside"
android:src="@drawable/handle" />
<ImageView
android:id="@+id/switch_v"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/handle"
android:layout_alignTop="@id/handle"
android:layout_alignBottom="@id/handle"
android:layout_alignRight="@id/handle"
android:layout_gravity="center"
android:scaleType="centerInside"
android:src="@drawable/switch_v" />
</RelativeLayout>
答案 1 :(得分:0)
为白色方块和V号创建一个drawable:
white_square_and_V_sign.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<bitmap
android:src="@drawable/handle"/>
</item>
<item>
<bitmap
android:gravity="center"
android:src="@drawable/switch_v"/>
</item>
</layer-list>
为白色方块创建一个drawable:
white_square.xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item >
<bitmap
android:src="@drawable/handle"/>
</item>
</layer-list>
创建一个选择器:
mySelector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/white_square"
android:state_pressed="true" />
<item android:drawable="@drawable/white_square_and_V_sign" />
</selector>
在布局中使用它:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@drawable/off_background" >
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/mySelector"/>
</RelativeLayout>