• 第二次作业


    <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" >
    
        <View
            android:id="@+id/view1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:background="#40E0D0" />
    
        <Button
            android:id="@+id/Buttondeepgreen"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/Buttonblack"
            android:layout_alignBottom="@+id/Buttonblack"
            android:layout_toLeftOf="@+id/Buttonblack"
            android:background="#006400"
            android:minHeight="80dip"
            android:minWidth="80dip" />
    
        <Button
            android:id="@+id/Buttonblack"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:background="#000000"
            android:minHeight="80dip"
            android:minWidth="80dip" />
    
        <Button
            android:id="@+id/Buttondeepblue"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBaseline="@+id/Buttonblack"
            android:layout_alignBottom="@+id/Buttonblack"
            android:layout_toRightOf="@+id/Buttonblack"
            android:background="#0000AA"
            android:minHeight="80dip"
            android:minWidth="80dip" />
    
        <Button
            android:id="@+id/Buttonred"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/Buttondeepgreen"
            android:layout_toLeftOf="@+id/Button

  • 相关阅读:
    转:Visio之取消自动对齐与粘附
    转:Excel怎样修改图例名称
    一张图说明学习率和loss之间的关系
    转:loss不收敛或不下降问题处理经验
    N-UCLA骨架数据可视化
    转:IEEE论文投稿流程(格式说明,新手指南,模板)
    Ubuntu下无法安装sun-java6-jdk的解决办法
    Git 学习笔记一
    轮播特效小项目总结
    第9次作业--接口及接口回调
  • 原文地址:https://www.cnblogs.com/yanzhen108/p/11460306.html
Copyright © 2020-2023  润新知