界面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_..
分类:
移动开发 时间:
2014-11-17 12:31:37
阅读次数:
295
通常我们都会使用context.getResources().getIdentifier(name, type,context.getPackageName())的方法去获取R.java中的数据。
type——R其中的内部类名,如"drawable","string","color","dimen","layout"等,这也是我们常用的关于界面所需要获取的数据类型。
name——R内部类中的s...
分类:
移动开发 时间:
2014-11-16 00:41:08
阅读次数:
296
界面文件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/activ..
分类:
移动开发 时间:
2014-11-13 07:13:53
阅读次数:
240
界面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_..
分类:
移动开发 时间:
2014-11-13 07:13:43
阅读次数:
253
getDimension和getDimensionPixelOffset的功能类似,都是获取某个dimen的值,但是如果单位是dp或sp,则需要将其乘以density如果是px,则不乘。并且getDimension返回float,getDimensionPixelOffset返回int.而getDi...
分类:
其他好文 时间:
2014-11-07 14:45:06
阅读次数:
185
找到对应的 res 资源, 修改其 styles.xml
0dp
4dp
4dp
@dimen/app_icon_padding_top
4dp
13sp
改为:
0dp
4dp
4dp
@d...
分类:
移动开发 时间:
2014-10-15 14:13:10
阅读次数:
197
(转自:http://blog.csdn.net/yuzhiboyi/article/details/7696174)最近,遇到了一种定义尺寸的方法,类似于C里面的宏定义一样,其实以前已经见过了这种使用方式,今天有时间就记录一下方便以后使用。下面来介绍一下:尺寸资源XML文件的使用 下面还是通过.....
分类:
移动开发 时间:
2014-10-13 14:26:19
阅读次数:
172
android:layout_below="@id/rl_userinfo"是指位置在id为rl_userinfo控件的下方
android:layout_marginBottom="@dimen/margin_superlarge"是定义外向向下的距离
android:ellipsize="end"指text显示效果当text超出控...
分类:
其他好文 时间:
2014-09-19 17:49:06
阅读次数:
205
java.lang.RuntimeException: Binary XML file line #7: You must supply a layout_height attribute.这个错误有可能是你指定了高度,但是在对应的dpi下没有声明这个dimen高度导致的错误。这个,你在xhdpi下...
分类:
编程语言 时间:
2014-09-17 10:04:21
阅读次数:
310
dimen.xml在values文件夹下面 16dp 16dp布局中的使用: 文件夹含义:values-v11 -------API 11+代表android 3.0 +,意思是在API11设备上,该目录下的dimens.xml代替res/values/dimens.xmlva...
分类:
移动开发 时间:
2014-08-12 18:24:04
阅读次数:
196