博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android
阅读量:5279 次
发布时间:2019-06-14

本文共 373 字,大约阅读时间需要 1 分钟。

1.开发Activity步骤

 第一步:写一个类继承Activity
 第二步:重写oncreate方法
 第三步:在主配置文件中注册activity
  <activity android:name=".类名"
                  android:label="@string/app_name">
            <intent-filter>
             <!--app的入口-->
                <action android:name="android.intent.action.MAIN" />
                <!--桌面显示-->
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

转载于:https://www.cnblogs.com/liumeilin/p/6858127.html

你可能感兴趣的文章
[POJ 2559]Largest Rectangle in a Histogram 题解(单调栈)
查看>>
VMware
查看>>
深入了解以太坊虚拟机第5部分——一个新合约被创建后会发生什么
查看>>
io多路复用
查看>>
Cache缓存
查看>>
objective-c基础
查看>>
NET中各种加密解密方法
查看>>
HTTP协议详解-基础知识
查看>>
activity-alias详解及应用
查看>>
[51单片机] SPI nRF24L01 无线简单程序 1
查看>>
[ucgui] 对话框4——模式消息窗口
查看>>
Android之XML序列化和解析
查看>>
YPBPR_PC下图像有毛刺或者水纹干扰的处理办法
查看>>
刷题向》关于一道奇怪的贪心(田忌赛马)BZOJ1034(NORMAL-)
查看>>
SDN第五次上机作业
查看>>
常用代码收藏
查看>>
设计模式(c#)代码总结
查看>>
POJ-Common Substrings(后缀数组-长度不小于 k 的公共子串的个数)
查看>>
Linux系统查看日志信息总结
查看>>
斐波那契数列
查看>>