The*_*Way 6 java android android-layout
我想创建一个带有四个按钮的屏幕,每个按钮都是一个钻石形状(就像一个方形转向45度),所有四个按钮都排成一个更大的钻石.
我在这里搜索了SO并设法创建了这个xml文件,提示我想要实现的目标:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/White"
android:orientation="vertical"
android:visibility="visible">
<TextView
android:id="@+id/scoreCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge">
</TextView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:layout_weight="1.0" >
<Button
android:id="@+id/topLeftOuter"
android:layout_centerInParent="true"
android:layout_width="60dp"
android:layout_height = "60dp"
android:background="@color/Blue"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45" >
</Button>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:clickable="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:layout_weight="1.0" >
<Button
android:id="@+id/bottomLeftOuter"
android:layout_centerInParent="true"
android:layout_width="60dp"
android:layout_height = "60dp"
android:background="@color/Yellow"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45" >
</Button>
</RelativeLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:layout_weight="1.0" >
<Button
android:id="@+id/bottomRightOuter"
android:layout_centerInParent="true"
android:layout_width="60dp"
android:layout_height = "60dp"
android:background="@color/Red"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45" >
</Button>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1.0"
android:clickable="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:layout_weight="1.0" >
<Button
android:id="@+id/topRightOuter"
android:layout_centerInParent="true"
android:layout_width="60dp"
android:layout_height = "60dp"
android:background="@color/Chartreuse"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45" >
</Button>
</RelativeLayout>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)
这是结果:
但我希望更多的内容如下:
我该怎么去那儿?
小智 6
我想你正在寻找这样的东西:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
android:orientation="vertical"
android:visibility="visible">
<TextView
android:id="@+id/scoreCount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"/>
<Button
android:id="@+id/bottomRightOuter"
android:layout_width="90dp"
android:layout_height = "90dp"
android:background="#ff0000"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45"
android:layout_marginLeft="218dp"
android:layout_marginStart="218dp"
android:layout_centerVertical="true"/>
<Button
android:id="@+id/topLeftOuter"
android:layout_width="90dp"
android:layout_height = "90dp"
android:background="#0022ff"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45"
android:layout_marginBottom="67dp"
android:layout_alignBottom="@+id/bottomRightOuter"
android:layout_alignLeft="@+id/topRightOuter"
android:layout_alignStart="@+id/topRightOuter"/>
<Button
android:id="@+id/topRightOuter"
android:layout_width="90dp"
android:layout_height="90dp"
android:background="#00ff00"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45"
android:layout_marginTop="-23dp"
android:layout_below="@+id/topLeftOuter"
android:layout_centerHorizontal="true"/>
<Button
android:id="@+id/bottomLeftOuter"
android:layout_width="90dp"
android:layout_height = "90dp"
android:background="#ffd000"
android:clickable="true"
android:visibility="visible"
android:adjustViewBounds="true"
android:rotation="45"
android:layout_centerVertical="true"
android:layout_marginLeft="78dp"/>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)
主要的一点是你需要摆脱所有这些布局
| 归档时间: |
|
| 查看次数: |
1608 次 |
| 最近记录: |