`
wang_peng1
  • 浏览: 3904593 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

android画图-----DensityActivity 添加view

阅读更多
在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;

}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics