标签:text ref 截图 需要 www dex -- 代码 png
title: AS的使用技巧
date: 2016-04-01 23:34:11
tags: [AndroidStudio]
categories: [Tool,IDE]
---
本文记录如何使用 AS 的模板功能,加快开发.
对于一些特别容易,又固定的代码块,可以设置成一个代码模块,这样不需要每次自己手动的去敲。
节约大量的时间。
例如下面这块代码:
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean(getString(R.string.text_welcome), true);
editor.apply();
上面这段代码中,除了字符串key和后面对应的value是true,其他都是模板代码。参考本目录下的LiveTemplates1-LiveTemplates3截图。
标签:text ref 截图 需要 www dex -- 代码 png
原文地址:https://www.cnblogs.com/jnienv/p/10575578.html