zoukankan      html  css  js  c++  java
  • 第二次作业 用相对布局实现如下九宫格(每个格子为宽度高度都为80dp的button),作业要求提交代码和运行截图。

    插入代码

    <?xml version="1.0" encoding="UTF-8"?>
    
    -<RelativeLayout tools:context=".MainActivity" android:background="#009688" android:layout_height="match_parent" android:layout_width="match_parent" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android">
    
    <Button android:background="#000000" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:layout_centerVertical="true" android:layout_centerHorizontal="true" android:id="@+id/button"/>
    
    <Button android:background="#339900" android:layout_height="80dp" android:layout_width="80dp" android:layout_centerVertical="true" android:id="@+id/button3" android:layout_toLeftOf="@id/button"/>
    
    <Button android:background="#3300ff" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:layout_centerVertical="true" android:id="@+id/button4" android:layout_toRightOf="@id/button"/>
    
    <Button android:background="#ff00cc" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:id="@+id/button5" android:layout_above="@id/button" android:layout_alignLeft="@id/button"/>
    
    <Button android:background="#ffff00" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:id="@+id/button6" android:layout_toRightOf="@id/button5" android:layout_alignTop="@id/button5"/>
    
    <Button android:background="#ffffff" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:id="@+id/button7" android:layout_toLeftOf="@id/button5" android:layout_alignTop="@id/button5"/>
    
    <Button android:background="#3399ff" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:layout_centerHorizontal="true" android:id="@+id/button8" android:layout_below="@id/button"/>
    
    <Button android:background="#ff0033" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:id="@+id/button9" android:layout_toLeftOf="@id/button8" android:layout_alignTop="@id/button8"/>
    
    <Button android:background="#66ff00" android:layout_height="80dp" android:layout_width="80dp" android:text="" android:id="@+id/button10" android:layout_toRightOf="@id/button8" android:layout_alignTop="@id/button8"> </Button>
    
    </RelativeLayout>

    运行截图

  • 相关阅读:
    Bootstrap自带的chart插件
    工作笔记2
    SqlFunctions 可以在EF种调用sqlserver的函数
    工作笔记1
    Asp.Net 导出Excel数据文件
    FileUpload上传与下载
    K2工作流的使用
    跨服务器导入数据SQL语句及其问题解决方案
    web.xml listener和event
    web-app子元素
  • 原文地址:https://www.cnblogs.com/zz2333/p/11449088.html
Copyright © 2011-2022 走看看