zoukankan      html  css  js  c++  java
  • 安卓作业

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        tools:context=".MainActivity" >
    
       <Button
            android:id="@+id/button1"
            android:layout_centerInParent="true"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#000000"
            android:text=""/>
        
        <Button
            android:id="@+id/button2"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#00FF00"
            android:layout_toLeftOf="@+id/button1"
            android:layout_centerVertical="true"
            android:text=""/>
        
        <Button
            android:id="@+id/button3"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#ff0000"
            android:layout_above="@+id/button1"
            android:layout_centerHorizontal="true"
            android:text=""/>
        
        <Button
            android:id="@+id/button4"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#ff00ff"
            android:layout_above="@+id/button2"
            android:layout_toLeftOf="@+id/button3"
            android:layout_centerHorizontal="true"
            android:text=""/>
        
        <Button
            android:id="@+id/button5"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#00fff0"
            android:layout_below="@+id/button1"
            android:layout_centerHorizontal="true"
            android:text=""/>
        
        <Button
            android:id="@+id/button6"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#ffff00"
            android:layout_below="@+id/button2"
            android:layout_toLeftOf="@+id/button5"
            android:layout_centerVertical="true"
            android:text=""/>
        
        <Button
            android:id="@+id/button7"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#8f00"
            android:layout_toRightOf="@+id/button1"
            android:layout_centerVertical="true"
            android:text=""/>
    
        <Button
            android:id="@+id/button8"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#0000FF"
            android:layout_above="@+id/button7"
            android:layout_toRightOf="@+id/button3"
            android:layout_centerHorizontal="true"
            android:text=""/>
    
        <Button
            android:id="@+id/button9"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:background="#8800ff00"
            android:layout_below="@+id/button7"
            android:layout_toRightOf="@+id/button5"
            android:layout_centerHorizontal="true"
            android:text="" />
        
    </RelativeLayout>

     

    2. 

  • 相关阅读:
    PostgreSQL 数据库备份与恢复 pd_dump pg_restore
    给数据库减负的7个技巧
    添加二级域名 配置多站点 阿里云
    PHP 循环输出多重数组元素
    CentOS 7 yum Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile
    CentOS 7 配置 nginx php-fpm 详细教程
    Centos7 卸载 Nginx 并重新安装 Nginx
    centos7 取消自动锁屏
    composer 安装以及使用教程
    MacBook Pro设置外接显示器竖屏显示 切换主显示器
  • 原文地址:https://www.cnblogs.com/3469656421aixz/p/13713187.html
Copyright © 2011-2022 走看看