【总结】互联网精准广告定向技术 【致敬原作者:NiuGuoZhu - http://www.iamniu.com/2012/03/10/geographical-orientation/】 截止今天,关于精准广告定向技术的介绍已经全部wanc.jieshaode写作初衷是总结自己的知识,将知识片段的 ...
分类:
移动开发 时间:
2016-12-10 06:48:56
阅读次数:
297
方法一代码设置importandroid.content.pm.ActivityInfo;@OverrideprotectedvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);}说明ge..
分类:
移动开发 时间:
2016-12-09 20:33:45
阅读次数:
290
【致敬原作者:NiuGuoZhu - http://www.iamniu.com/2012/03/10/geographical-orientation/】 地域定向依赖于对IP地址的识别,而IP协议是互联网的基础协议,因此从网络诞生的第一天起,地域定向就可以被使用了。 通俗来讲,IP地址就是互联网 ...
分类:
移动开发 时间:
2016-12-08 03:19:52
阅读次数:
158
今天我们来说一下Android五大布局-LinearLayout布局(线性布局) 含义:线性布局,顾名思义,指的是整个Android布局中的控件摆放方式是以线性的方式摆放的, 主要作用:主要对整个界面进行基本设置使用 重要属性:android:orientation 值:horizontal 元素水 ...
分类:
移动开发 时间:
2016-11-27 23:09:30
阅读次数:
382
1. The three principles of OOP are encapsulation(封装性), inheritance(继承性) and polymorphism(多态性). example: A subtype is guaranteed to have all the member ...
分类:
其他好文 时间:
2016-11-26 14:11:56
阅读次数:
254
lableSlider1.kv文件 : orientation:'vertical' BoxLayout: MyLabelSlider: name: 'Slider1' onValue: root.onMySlider id:mySlider Label: text:st... ...
分类:
其他好文 时间:
2016-11-25 20:06:26
阅读次数:
446
此博文主要针对IOS应用, 是屏幕旋转相关问题的一个总结. 主要内容有: 博客: http://www.cnblogs.com/jhzhu 邮箱: jhzhuustc@gmail.com 作者: 知明所以 时间: 2013-12-12 改变Orientation的三种途径 这里, 咱们主要理清一下: ...
分类:
移动开发 时间:
2016-11-25 09:42:17
阅读次数:
250
动态添加TextView控件: 一:创建一个Android project项目 activity_main.xml文件: 1、用两个LinearLayout布局分别包裹一对TextView,EditText控件,将orientation设置为水平方向,EditText的hint属性可以实现水印效果, ...
分类:
移动开发 时间:
2016-11-23 22:44:20
阅读次数:
245
一:LinearLayout 1、线性布局,这个东西,从外框上可以理解为一个div,他首先是一个一个从上往下罗列在屏幕上。每一个LinearLayout里面又可分为垂直布局(android:orientation="vertical")和水平布局(android:orientation="horiz ...
分类:
移动开发 时间:
2016-11-22 20:38:42
阅读次数:
236
一、线性布局(LinearLayout) LinearLayout是线性布局控件,它包含的子控件将以垂直或水平的方式排列 LinearLayout的常用属性 android:orientation=""设置控件内的子控件的排列方式 1)vertical(垂直) 代码如下: 效果如图: 1)horiz ...
分类:
移动开发 时间:
2016-11-22 15:04:57
阅读次数:
248