- 浏览: 3942482 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
hinuliba:
...
字体背景颜色的高度修改 -
KANGOD:
最后的 -createDialog() 私有方法是怎么回事,没 ...
简单的实现listView中item多个控件以及点击事件 -
sswangqiao:
呵呵,呵呵
onActivityResult传值的使用 -
yumeiqiao:
感觉你所的不清楚 lstView.setOnTouchLi ...
listview中viewflipper的问题 -
lizhou828:
果然是大神啊!!!
Animation动画效果的实现
在DensityActivity这个历程中,主要讲述了动态添加view的方法,而其中包含的东西是比较琐碎的。
view.setBackgroundDrawable(d);其中d可以为Drawable也可以为BitmapDrawable
所以实现方法就有两种
Drawable d = getResources().getDrawable(resource);
第二种呢 :
bitmap = BitmapFactory.decodeResource(getResources(), id);
BitmapDrawable d = new BitmapDrawable(getResources(), bitmap);
其实 也就实现了Bitmap到Drawable的转化。
下面也有两个添加view
private void addLabelToRoot(LinearLayout root, String text) {
TextView label = new TextView(this);
label.setText(text);
root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
}
和
private void addResourceDrawable(LinearLayout layout, int resource) {
View view = new View(this);
final Drawable d = getResources().getDrawable(resource);
view.setBackgroundDrawable(d);
view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(),
d.getIntrinsicHeight()));
layout.addView(view);
}
主要用到了layout.addView和view.setLayoutParams
这都是从代码中添加的,这里还提到了一种从xml中添加view的方法,这中方法有分两种:
LayoutInflater li = (LayoutInflater)getSystemService(
LAYOUT_INFLATER_SERVICE);
layout = (LinearLayout)li.inflate(R.layout.density_image_views, null); //返回一个在xml中已经布局好的试图
density_image_views 代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo120dpi" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo160dpi" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo240dpi" />
</LinearLayout>
另一种形式:
layout = (LinearLayout)li.inflate(R.layout.density_styled_image_views, null);
density_styled_image_views的代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView style="@style/ImageView120dpi" />
<ImageView style="@style/ImageView160dpi" />
<ImageView style="@style/ImageView240dpi" />
</LinearLayout>
style下的代码如下:
<style name="ImageView120dpi">
<item name="android:src">@drawable/stylogo120dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="ImageView160dpi">
<item name="android:src">@drawable/stylogo160dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="ImageView240dpi">
<item name="android:src">@drawable/stylogo240dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
</resources>
其实两种方式从本质上来说都是一样的。
而在这个实例中最后还讲述了onMeasure的应用
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
final DisplayMetrics metrics = getResources().getDisplayMetrics();
setMeasuredDimension(
mBitmap.getScaledWidth(metrics),
mBitmap.getScaledHeight(metrics));
}
默认的onMeasure提供的大小是100*100所以你想设置自己view的大小 必须实现此方法它的意思是 父view问你 你要多大的空间啊?然后 需要自己计算你需要的大小
然后在必须实现setMeasuredDimension 来通知你设置试图的大小
这里呢 你可以参看:
http://www.chinaup.org/docs/toolbox/custom-components.html
http://www.cnblogs.com/xirihanlin/archive/2009/07/23/1529111.html
http://www.cnblogs.com/xirihanlin/archive/2009/07/23/1529238.html
除非你总是需要一个100×100像素的控件,否则,你必须要重写onMeasure。
onMeasure方法在控件的父元素正要放置它的子控件时调用。它会问一个问题,“你想要用多大地方啊?”,然后传入两个参数——
widthMeasureSpec和heightMeasureSpec。它们指明控件可获得的空间以及关于这个空间描述的元数据。
比返回一个结果要好的方法是你传递View的高度和宽度到setMeasuredDimension方法里。
接下来的代码片段给出了如何重写onMeasure。注意,调用的本地空方法是来计算高度和宽度的。它们会译解widthHeightSpec和heightMeasureSpec值,并计算出合适的高度和宽度值。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int measuredHeight = measureHeight(heightMeasureSpec);
int measuredWidth = measureWidth(widthMeasureSpec);
setMeasuredDimension(measuredHeight, measuredWidth);
}
private int measureHeight(int measureSpec) {
// Return measured widget height.
}
private int measureWidth(int measureSpec) {
// Return measured widget width.
}
边界参数——widthMeasureSpec和heightMeasureSpec ,效率的原因以整数的方式传入。在它们使用之前,首先要做的是使用MeasureSpec类的静态方法getMode和getSize来译解,如下面的片段所示:
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
依据specMode的值,如果是AT_MOST,specSize 代表的是最大可获得的空间;如果是EXACTLY,specSize 代表的是精确的尺寸;如果是UNSPECIFIED,对于控件尺寸来说,没有任何参考意义。
当以EXACT方式标记测量尺寸,父元素会坚持在一个指定的精确尺寸区域放置View。在父元素问子元素要多大空间时,AT_MOST指示者会说给我最大的范围。在很多情况下,你得到的值都是相同的。
在两种情况下,你必须绝对的处理这些限制。在一些情况下,它可能会返回超出这些限制的尺寸,在这种情况下,你可以让父元素选择如何对待超出的View,使用裁剪还是滚动等技术。
接下来的框架代码给出了处理View测量的典型实现:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int measuredHeight = measureHeight(heightMeasureSpec);
int measuredWidth = measureWidth(widthMeasureSpec);
setMeasuredDimension(measuredHeight, measuredWidth);
}
private int measureHeight(int measureSpec) {
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
// Default size if no limits are specified.
int result = 500;
if (specMode == MeasureSpec.AT_MOST)
{
// Calculate the ideal size of your
// control within this maximum size.
// If your control fills the available
// space return the outer bound.
result = specSize;
}
else if (specMode == MeasureSpec.EXACTLY)
{
// If your control can fit within these bounds return that value.
result = specSize;
}
return result;
}
private int measureWidth(int measureSpec) {
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
// Default size if no limits are specified.
int result = 500;
if (specMode == MeasureSpec.AT_MOST)
{
// Calculate the ideal size of your control
// within this maximum size.
// If your control fills the available space
// return the outer bound.
result = specSize;
}
else if (specMode == MeasureSpec.EXACTLY)
{
// If your control can fit within these bounds return that value.
result = specSize;
}
return result;
}
view.setBackgroundDrawable(d);其中d可以为Drawable也可以为BitmapDrawable
所以实现方法就有两种
Drawable d = getResources().getDrawable(resource);
第二种呢 :
bitmap = BitmapFactory.decodeResource(getResources(), id);
BitmapDrawable d = new BitmapDrawable(getResources(), bitmap);
其实 也就实现了Bitmap到Drawable的转化。
下面也有两个添加view
private void addLabelToRoot(LinearLayout root, String text) {
TextView label = new TextView(this);
label.setText(text);
root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
}
和
private void addResourceDrawable(LinearLayout layout, int resource) {
View view = new View(this);
final Drawable d = getResources().getDrawable(resource);
view.setBackgroundDrawable(d);
view.setLayoutParams(new LinearLayout.LayoutParams(d.getIntrinsicWidth(),
d.getIntrinsicHeight()));
layout.addView(view);
}
主要用到了layout.addView和view.setLayoutParams
这都是从代码中添加的,这里还提到了一种从xml中添加view的方法,这中方法有分两种:
LayoutInflater li = (LayoutInflater)getSystemService(
LAYOUT_INFLATER_SERVICE);
layout = (LinearLayout)li.inflate(R.layout.density_image_views, null); //返回一个在xml中已经布局好的试图
density_image_views 代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo120dpi" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo160dpi" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/reslogo240dpi" />
</LinearLayout>
另一种形式:
layout = (LinearLayout)li.inflate(R.layout.density_styled_image_views, null);
density_styled_image_views的代码如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView style="@style/ImageView120dpi" />
<ImageView style="@style/ImageView160dpi" />
<ImageView style="@style/ImageView240dpi" />
</LinearLayout>
style下的代码如下:
<style name="ImageView120dpi">
<item name="android:src">@drawable/stylogo120dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="ImageView160dpi">
<item name="android:src">@drawable/stylogo160dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
<style name="ImageView240dpi">
<item name="android:src">@drawable/stylogo240dpi</item>
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
</style>
</resources>
其实两种方式从本质上来说都是一样的。
而在这个实例中最后还讲述了onMeasure的应用
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
final DisplayMetrics metrics = getResources().getDisplayMetrics();
setMeasuredDimension(
mBitmap.getScaledWidth(metrics),
mBitmap.getScaledHeight(metrics));
}
默认的onMeasure提供的大小是100*100所以你想设置自己view的大小 必须实现此方法它的意思是 父view问你 你要多大的空间啊?然后 需要自己计算你需要的大小
然后在必须实现setMeasuredDimension 来通知你设置试图的大小
这里呢 你可以参看:
http://www.chinaup.org/docs/toolbox/custom-components.html
http://www.cnblogs.com/xirihanlin/archive/2009/07/23/1529111.html
http://www.cnblogs.com/xirihanlin/archive/2009/07/23/1529238.html
除非你总是需要一个100×100像素的控件,否则,你必须要重写onMeasure。
onMeasure方法在控件的父元素正要放置它的子控件时调用。它会问一个问题,“你想要用多大地方啊?”,然后传入两个参数——
widthMeasureSpec和heightMeasureSpec。它们指明控件可获得的空间以及关于这个空间描述的元数据。
比返回一个结果要好的方法是你传递View的高度和宽度到setMeasuredDimension方法里。
接下来的代码片段给出了如何重写onMeasure。注意,调用的本地空方法是来计算高度和宽度的。它们会译解widthHeightSpec和heightMeasureSpec值,并计算出合适的高度和宽度值。
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int measuredHeight = measureHeight(heightMeasureSpec);
int measuredWidth = measureWidth(widthMeasureSpec);
setMeasuredDimension(measuredHeight, measuredWidth);
}
private int measureHeight(int measureSpec) {
// Return measured widget height.
}
private int measureWidth(int measureSpec) {
// Return measured widget width.
}
边界参数——widthMeasureSpec和heightMeasureSpec ,效率的原因以整数的方式传入。在它们使用之前,首先要做的是使用MeasureSpec类的静态方法getMode和getSize来译解,如下面的片段所示:
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
依据specMode的值,如果是AT_MOST,specSize 代表的是最大可获得的空间;如果是EXACTLY,specSize 代表的是精确的尺寸;如果是UNSPECIFIED,对于控件尺寸来说,没有任何参考意义。
当以EXACT方式标记测量尺寸,父元素会坚持在一个指定的精确尺寸区域放置View。在父元素问子元素要多大空间时,AT_MOST指示者会说给我最大的范围。在很多情况下,你得到的值都是相同的。
在两种情况下,你必须绝对的处理这些限制。在一些情况下,它可能会返回超出这些限制的尺寸,在这种情况下,你可以让父元素选择如何对待超出的View,使用裁剪还是滚动等技术。
接下来的框架代码给出了处理View测量的典型实现:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int measuredHeight = measureHeight(heightMeasureSpec);
int measuredWidth = measureWidth(widthMeasureSpec);
setMeasuredDimension(measuredHeight, measuredWidth);
}
private int measureHeight(int measureSpec) {
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
// Default size if no limits are specified.
int result = 500;
if (specMode == MeasureSpec.AT_MOST)
{
// Calculate the ideal size of your
// control within this maximum size.
// If your control fills the available
// space return the outer bound.
result = specSize;
}
else if (specMode == MeasureSpec.EXACTLY)
{
// If your control can fit within these bounds return that value.
result = specSize;
}
return result;
}
private int measureWidth(int measureSpec) {
int specMode = MeasureSpec.getMode(measureSpec);
int specSize = MeasureSpec.getSize(measureSpec);
// Default size if no limits are specified.
int result = 500;
if (specMode == MeasureSpec.AT_MOST)
{
// Calculate the ideal size of your control
// within this maximum size.
// If your control fills the available space
// return the outer bound.
result = specSize;
}
else if (specMode == MeasureSpec.EXACTLY)
{
// If your control can fit within these bounds return that value.
result = specSize;
}
return result;
}
发表评论
-
URI 转path
2019-06-26 10:41 1322转自知乎Matisse package com.zhihu ... -
权限申请
2017-09-22 13:25 1263public class PermissionActivit ... -
onPreviewFrame 相机输出格式转换yuv420p保存成图片
2015-11-25 15:59 7567在最近项目中,因为特殊需要,底层相机往外输出了i420 也 ... -
new Android's Runtime Permission
2015-11-03 21:05 1239targetSdkVersion 23 开始 使用运行时权 ... -
自定义listview 边缘效果
2015-02-28 10:58 1738static void ChangeEdgeEffect( ... -
发射打开wifi
2015-01-07 10:25 1432WifiManager wifiManager = (Wif ... -
RecyclerView
2014-11-05 13:08 1254http://www.grokkingandroid.com ... -
获取点击区域
2014-04-28 09:39 1580@Override public void getHitR ... -
speex 和libogg 编译
2014-04-03 16:17 6403下载: http://www.speex.org/down ... -
rsync 同步
2014-03-28 17:06 1837两台android 设备 进行rsy ... -
流转字符串
2014-03-11 09:49 1522public static String convertSt ... -
java simplexml 序列化
2014-03-06 13:22 5962<?xml version="1.0&quo ... -
获取其他程序的特定资源
2014-03-05 09:33 1689try { PackageManager man ... -
检测来电属于哪个sim卡
2014-02-07 10:41 1722public class IncomingCallInter ... -
使用 NDK r9 编译ffmpeg
2014-01-16 13:32 168411. 环境 ubuntu 我的是13.10 ndk r9 ... -
android h264含so
2014-01-13 11:24 1545http://download.csdn.net/downlo ... -
xml转义字符
2013-12-18 09:29 1592" " ' & ... -
字体背景颜色的高度修改
2013-12-11 10:31 4215当使用android:lineSpacingExtra= ... -
屏保的实现
2013-12-07 10:27 2796最近需要做一个屏保,开始以为很简单,因为系统本身就带了屏保功 ... -
PreferenceActivity下嵌套PreferenceScreen在其它布局中
2013-11-21 16:32 9159今天在修改系统代码的时候,系统代码用了PreferenceA ...
相关推荐
《Android画图工具源码详解》 在移动设备领域,Android操作系统以其开源、灵活的特点深受开发者喜爱。在Android平台上开发一款画图工具,不仅可以满足用户日常的手绘需求,还可以为艺术家提供创作空间。本篇文章将...
比较好用的电子教鞭,可以不锁定屏幕情况下画图。
- 在Android中,画图功能通常通过继承自`View`类来实现,创建一个自定义的`DrawView`,重写`onDraw()`方法,在这里进行绘图操作。 3. **Canvas和Paint对象**: - `Canvas`是画布,用于绘制图形。开发者可以在`...
如何使用pandas解析数据并存储,再利用matplotlib画图------data1.csv
海龟画图-凯蒂猫-python代码
在Android平台上,开发一款画图着色应用是一个有趣且实用的项目,尤其对于教育和娱乐领域。本项目的核心是提供一个界面,用户可以在这里绘制、填充颜色,进行素描活动,帮助孩子们提升创造力和手眼协调能力。下面将...
海龟画图-机器猫-python代码
在Android平台上,开发一款画图程序是一个常见的毕业设计项目,旨在让学习者深入理解Android应用开发的基本原理和实践技能。这个源码示例提供了一个完整的Android画图应用程序,可以帮助学生和开发者了解如何在...
python mat 画图-樱花树
在这个“Unity 画图-画板-画笔”项目中,我们可以看到开发者正在构建一个在Unity环境中实现的绘画应用。这个应用可能允许用户在3D空间内绘制,或者创建一个2D画布作为游戏的一部分,为用户提供创意性的互动体验。 ...
【国家自然科学基金】-画图-基金支持热词逐年推荐-【万方软件创新助手】-20140801.pdf
地震数据剖面画图-Matlab程序
在"markers-for-android"中,开发者可能创建了自定义的View类,用于处理画图的逻辑,比如`DrawView`。自定义View需要覆盖`onDraw()`方法,该方法会在View需要重绘时被调用。此外,可能还涉及到`onTouchEvent()`来...
Android 画图程序源码分析 在Android平台上开发一款画图程序,涉及到许多核心技术和组件。这个"Android 画图程序源码.rar"文件提供了一个实际的案例,可以帮助我们深入理解Android图形系统的工作原理,以及如何创建...
JavaScript应用实例-n阶贝塞尔曲线画图-2.js
第21章__用JS来画图-VML.ppt 很有用处!
本主题“dino用OpenGL描点画图-恐龙”聚焦于如何使用OpenGL来绘制恐龙的形象,这是一个常见的学习实践项目,旨在帮助初学者理解和掌握基本的图形绘制技巧。 在OpenGL中,描点和画线是最基础的绘图操作。描点...
在这个教程"python画图-20-列表增加数据之insert.ev4"中,重点是讲解如何使用`insert`方法向列表中添加数据。`insert`方法是一个非常实用的功能,它可以让我们在列表的指定位置插入一个新元素,从而改变列表的结构。...
这个主题,"js 画图--简单的直线图",是关于如何利用JS库来生成基本的线条图表。在提供的资源中,我们有两个关键文件:`jquery-latest.pack.js` 和 `excanvas.js`。 `jQuery` 是一个广泛使用的JavaScript库,它简化...
"python画图-21-列表删除数据.ev4.mp4"这个视频教程很可能是通过实例演示了如何在Python中删除列表中的数据并结合可视化来展示这一过程。 首先,Python提供了多种方法来删除列表中的数据: 1. **pop()** 方法:此...