layout: post
title: "学习 ApiDemos 005 Dialog"
date: 2016-12-18 20:56:54
comments: true
external-url:
categories: android,ApiDemos
简介
- ApiDemos -> App -> Activity -> Dialog
- 源代码 http://git.oschina.net/vileneera/LearnApiDemos/tree/005
值得注意的点
- getResources().getDrawable 这个方法以后将要抛弃
- 一般建议选 ContextCompat.getDrawable(context, R.drawable)
- values的v11,v19,v20 对应 版本
- tools:targetApi 来注明版本
疑问
- layout 的命名 dialog_activity.xml 换成 activity\dialog 会不会好点?