0.质量 团队质量和产品质量。1.多适配: a. res下支持多适配。 drawable/layout/values(dimens) b.multi-apks. 针对不同的系统,可以做多个apk。每个apk针对自己适配的系统,多特殊的优化。比如,动画, layout复杂度等。2. ...
分类:
移动开发 时间:
2014-09-26 19:49:38
阅读次数:
192
ArcGis中GraphicsLayer图层图层用来添加标记画线等等,例如点击定位后,在地图上标出当前的位置同时以当前位置作为地图中心可以用如下代码:
Drawable drawable = getResources().getDrawable(R.drawable.arrow);
PictureMarkerSymbol picSymbol = new PictureMarkerSymbo...
分类:
移动开发 时间:
2014-09-26 15:05:58
阅读次数:
458
设置控件的background的例子:
<Button
android:id="@+id/btn1"
android:layout_width="100dp"
android:layout_height="50dp"
android:text="btn1"
android:background="@drawable/...
分类:
移动开发 时间:
2014-09-26 14:45:58
阅读次数:
238
1.布局文件中的SeekBar:
(进度条样式 android:progressDrawable="@drawable/seekbar_bg")
(拖动按钮 android:thumb="@drawable/thumb_bar" 也可配置样式,如按下状态等;)
android:id="@+id/my_se...
分类:
其他好文 时间:
2014-09-26 11:32:18
阅读次数:
217
1 final Builder builder = new AlertDialog.Builder(this); 2 builder.setIcon(R.drawable.appicns_folder_smart); 3 builder.setTitle("Normal Dialog"); 4 b....
分类:
移动开发 时间:
2014-09-25 19:45:57
阅读次数:
219
简单来说就是自定义一个drawable。 有两种情况。 第一种: 单击时变色,不单击则原色:(pressed是单击,focused是获取焦点,根据需要更改) @drawable时可以是圆角的文件:
圆角也是在drawable放置 第二种:
选择则改变,不选择则默认:
如: -------------...
分类:
其他好文 时间:
2014-09-24 20:14:57
阅读次数:
199
public?class?CircularProgressDrawable?extends?Drawable
????implements?Animatable?{
?
??private?static?final?Interpolator?ANGLE_INTERPOLATOR??????=?new?LinearInterpolator();...
分类:
编程语言 时间:
2014-09-22 12:30:52
阅读次数:
269
我们平常使用SimpleAdapter作为ListView或GridView适配器时,如果要显示图片,我们通常使用图片的id即R.drawable.xxx的方式来将图片绑定到视图上。
但是,如果我们要使用的图片是个Drawable或Bitmap对象时,上面的方式就不能解决问题了。下面就介绍如何在SimpleAdapter中使用Drawable或Bitmap对象。...
分类:
其他好文 时间:
2014-09-21 16:19:31
阅读次数:
180
边框,圆角,都可以实现的在drawable目录下添加view_yuan_morelist.xml,设置控件的边框代码。如下: 调用样式只要设置控件的android:background="@drawable/view_yuan_morelist"
分类:
移动开发 时间:
2014-09-21 12:05:20
阅读次数:
258
ImageView是显示图片的一个控件
ImageView属性:
android:src=”@drawable/ic_launcher”----ImageView的内容图像
android:background=”@drawable/ic_launcher”----ImageView的背景图像
ToggleButton
他有两种状态:选中和未选中。并且需要为不同的状态设置不同的显示文本
...
分类:
其他好文 时间:
2014-09-19 10:15:25
阅读次数:
212