移动应用开发技术 第一章(用于期末考试复习)

调用图片资源

(1)java

调用mipmap中

getResources().getDrawable(R.mipmap.ic_launcher);

调用以drawable 开头的文件夹

getResources().getDrawable(R.drawable.icon);

(2)xml

@mipmap/ic_launcher

@drawable/icon

<style></style>:定义主题的标签

<item></item>:设置主题样式的标签

设置主题

(1)androidmanifest.xml

android:theme ="@style/AppTheme"

(2)java

setTheme(R.style.apptheme);

<style></style>:定义样式的标签

<item></item>:设置控件样式的标签

xml中引用样式

style="@style/textviewstyle"

布局资源

(1)java

//在Activity的onCreate()方法中调用activity_main.xml布局文件

setcontentview(R.layout.activity_main);

(2)xml

<include layout="@layout/activity_main/">

字符串

<string></string>:定义字符串的标签

<resources>

<string name="app_name">字符串</string>

</resources>

(1)java

getResources().getString(R.string.app.name);

(2)xml

@string/app_name

颜色

<color></color>:定义颜色的标签

<resources>

<color name="colorPrimary">#3F51B5</color>

</resources>

(1)java

getResources().getColor(R.color.colorPrimary);

(2)xml

@color/colorPrimary

尺寸

<dimen></dimen>:定义尺寸的标签

<resources>

<dimen name="activity_horizontal_margin">16dp</dimen>

</resources>

(1)java

getReources().getDimension(R.dimen.activity_horizontal_margin);

(2)xml

@dimen/activity_horizontal_margin

单元测试是指在Android程序开发过程中对最小的功能模块进行测试,单元测试包括Android单元测试和Junit单元测试。

LogCat是Android中的命令行工具,用于获取程序从启动到关闭的日志信息。

Log类所输出的日志内容分为六个级别。

相关推荐
我想睡到自然醒₍˄·͈༝·͈˄*₎◞ ̑10 天前
【Android】EventBus——进行良好的组件通信
android·java·microsoft·android-studio
画个太阳作晴天15 天前
Android13应用在后台录音无声音
android·framework·android-studio·录音
大耳猫21 天前
解决Error resolving plugin xxx
kotlin·gradle·android-studio
少说多做3431 个月前
Android 使用 LiveData/OnCheckedChangeListener 来监听变量变化
android·java·android-studio
B.-1 个月前
Flutter 应用在真机上调试的流程
android·flutter·ios·xcode·android-studio
朱某人19952 个月前
AndroidStudio 加载grade失败问题解决
android-studio
PleaSure乐事2 个月前
AndroidStudio通过Bundle进行数据传递
android·java·android studio·android-studio·移动应用开发
孑么2 个月前
GDPU Andriod移动应用 Fragment碎片与简易版的新闻应用
android·xml·java·kotlin·gradle·android-studio
西红柿计算机毕设2 个月前
基于安卓Android的健康饮食系统APP(源码+文档+部署+讲解)
大数据·数据库·vue.js·spring boot·python·android-studio
天神哥哥啊2 个月前
AndroidStudio部署多渠道打包环境(一)
android·游戏·android-studio