Android
OHWWWendy
好好学习天天向上
展开
-
< application >标签
< application >标签概述原创 2017-07-23 19:06:27 · 388 阅读 · 0 评论 -
Log.v,log.w,log.i,log.d,log.e的用法
在调试代码的时候我们需要查看调试信息,那我们就需要用Android Log类。android.util.Log常用的方法有以下5个:Log.v() Log.d() Log.i() Log.w() 以及 Log.e() 。根据首字母对应VERBOSE,DEBUG,INFO, WARN,ERROR。1、Log.v 的调试颜色为黑色的,任何消息都会输出,这里的v代表verbose啰嗦的意转载 2017-07-23 16:56:40 · 519 阅读 · 0 评论 -
Android布局layout属性
1、可以使某些资源文件或UI组件可重用include layout="@layout/other"/> 2、定义一个文本编辑框,使用绝对定位android:layout_x="20dip"android:layout_y="80dip"3、控件位置android:layout_centerHorizontal 控制该组件是否位于布局容器的水平居中位置转载 2017-07-23 16:05:10 · 336 阅读 · 0 评论 -
(XML&Java)TextView居中&TextView中的文字居中
TextView居中、TextView中的文字居中(XML&Java)layout_weight属性原创 2017-07-26 21:24:21 · 4170 阅读 · 0 评论 -
Android实例程序中Gallery报错:R.styleable unresolved解决办法
Android实例程序中Gallery报错:R.styleable unresolved解决办法imageView = new ImageView(MainActivity.this);TypedArray typedArray = obtainStyledAttributes(R.styleable.Gallery);imageView.setBackgroundResource(typedA原创 2017-09-26 21:14:33 · 823 阅读 · 0 评论 -
Eclipse打包安卓应用
eclipse中打包安卓应用原创 2017-10-15 16:56:01 · 903 阅读 · 0 评论 -
Intent简介及属性
Intent简介Intent属性Intent过滤器简介原创 2017-09-27 14:40:15 · 919 阅读 · 0 评论 -
Android UI框架集结
Android UI框架集结通过这些框架,感觉自己菜出了底线…Android Studio Android Studio可将导入jar包变成简单的一行代码: 在app/build.gradle文件中进行配置,导入要使用的类库,然后点击上面弹出的一行最右边的Sync Now。ConstraintLayout 牛逼的布局管理器(我之前都干了什么,一点也不知道) 最新的布局原创 2018-01-29 19:27:50 · 942 阅读 · 0 评论 -
Android记录Volley框架获取网络数据
之前用过一次,做记账本APP,然而,这次想用忘的一干二净,所以决定记录一下。1. 导入Volley框架在build.gradle中添加如下语句(或下载jar包添加到项目中),Sync nowimplementation 'com.mcxiaoke.volley:library:1.0.19'2. 在AndroidManifest.xml中添加网络权限<uses-permissio...原创 2019-04-18 16:45:17 · 604 阅读 · 1 评论