任何想法如何布局这些,以便它们使用可点击的按钮来塑造?
问问题
709 次
1 回答
0
实现它的唯一方法,设计图像视图的布局并将图像的每个部分添加到其中并使用选择器可绘制来更改某些事件中的图像
我认为这样你就可以实现你的目的
试试下面的布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="New Button"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:id="@+id/button2"
android:layout_alignBottom="@+id/button3" />
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:id="@+id/button3"
android:layout_alignParentTop="true" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:layout_alignBottom="@+id/button3" />
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:layout_alignParentTop="true" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
于 2015-04-02T12:31:51.817 回答