XML布局<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertical_margin"an..
分类:
其他好文 时间:
2015-02-27 01:34:17
阅读次数:
148
1、请修改styles.xml,将
0dp
4dp
4dp
@dimen/app_icon_padding_top
4dp
13sp
修改为:
0dp
4dp
4dp
@dime...
分类:
移动开发 时间:
2015-02-04 13:00:25
阅读次数:
178
1,主界面<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertical_margin"..
分类:
其他好文 时间:
2015-02-01 20:34:03
阅读次数:
168
在应用开发中,有时我们需要用代码计算布局的高度,可能需要减去状态栏(status bar)的高度。状态栏高度定义在Android系统尺寸资源中status_bar_height,但这并不是公开可直接使用的,例如像通常使用系统资源那样android.R.dimen.status_bar_height。...
分类:
其他好文 时间:
2015-02-01 11:57:06
阅读次数:
137
android 适配,之前工作都是以1280*720界面进行适配工作,但是现在手机分辨率进入2K时代,所以现在美工都以1920*1080来做界面设计。以以前的工作经验总结了一下适的方案。
1.工具:MarkMan这个是必备的测量工具
下载地址(下载安装后别更新,不然保存不了测量过的数据)
2.懂得分辨率原理(0.75、1、1.5、2.0、3.0)
3.知道以什么分辨率开发界面。
要注意...
分类:
移动开发 时间:
2015-01-30 09:04:33
阅读次数:
291
在应用开发中,有时我们需要用代码计算布局的高度,可能需要减去状态栏(status bar)的高度。状态栏高度定义在Android系统尺寸资源中status_bar_height,但这并不是公开可直接使用的,例如像通常使用系统资源那样android.R.dimen.status_bar_height。但是系统给我们提供了一个Resource类,通过这个类我们可以获取资源文件。下边是在Activity...
分类:
其他好文 时间:
2015-01-29 16:07:05
阅读次数:
165
现在Geogebra中作一个宏,把重复绘制五角星的动作简化;然后绘制完毕之后导出为pstricks代码:
\documentclass[10pt]{article}
\usepackage{pstricks-add}
\pagestyle{empty}
\begin{document}
\psset{xunit=0.2cm,yunit=0.2cm,algebraic=true,dimen=mid...
分类:
其他好文 时间:
2015-01-15 11:06:20
阅读次数:
564
Class c = null;Object obj = null;Field field = null;int x = 0, sbar = 0;try { c = Class.forName("com.android.internal.R$dimen"); obj = c.newInst...
分类:
其他好文 时间:
2014-12-22 12:49:21
阅读次数:
175
activity_main.xml:<RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingBottom="@dimen/activity_vertic..
分类:
移动开发 时间:
2014-12-07 06:48:35
阅读次数:
286
1、请找到对应的res资源,修改styles.xml,将
0dp
4dp
4dp
@dimen/app_icon_padding_top
4dp
13sp
改为:
0dp
4dp
4dp
...
分类:
移动开发 时间:
2014-12-04 12:08:05
阅读次数:
446