zoukankan      html  css  js  c++  java
  • java课程之团队开发冲刺阶段2.9

      总结昨天进度:

      已经完成查询课程信息任务

      遇到的困难:

      已经全部解决

      今天的任务:

      修改APP图标

      当日总结:

      manifest中管理着APP的基本信息资料,所以是在manifest文件中修改APP的名字,图标

        <application
            android:name=".app.app"
            android:allowBackup="true"
            android:fullBackupContent="@xml/backup_descriptor"
            android:icon="@drawable/ccc"
            android:label="@string/app_name"
            android:networkSecurityConfig="@xml/network_security_config"
            android:roundIcon="@mipmap/ic_launcher_round"
            android:supportsRtl="true"
            android:theme="@style/greenTheme"
            tools:ignore="GoogleAppIndexingWarning"
            tools:targetApi="n">

      

  • 相关阅读:
    逻辑回归
    异常
    内部类
    接口
    多态
    final关键字(最终的)
    不能被继承的父类成员
    对象初始化的过程
    方法重写
    abstract关键字
  • 原文地址:https://www.cnblogs.com/heiyang/p/11008807.html
Copyright © 2011-2022 走看看