Android自定義View研究(五)--View的大小

說了這麼多,那 View 的大小是多少呢?這小節我就研究下 View 的大小。經過 LogCat 來研究 View 的大小是怎樣肯定的。好了,直接切入正題吧 .

1、        Activity中直接new HelloView View的大小。 java

View 的大小獲取能夠用其中的兩種方法獲取:
    this .getHeight() :獲取 View 的高
this .getWidth() :獲取 View 的寬
咱們能夠作一個猜測, View 的大小是在何時肯定的,是在 new 一個 View 的時候仍是在 onDraw() 的時候?仍是在其餘時候?爲了研究這個,咱們分別在構造函數和 onDraw 中打上 Log 補丁 ( 這個只是我的習慣的稱呼,不足爲鑑 )
--- >HelloVew.java


    public HelloView(Context context){ android

       super(context); canvas

       Log.v("HelloView(Context context)","" + this.getHeight()+ "   "+ this.getWidth()); ide

    } 函數

    /** 測試

     * 這個是咱們要在XML中初始化用的 this

     * */ spa

    public HelloView(Context context,AttributeSet attrs){ orm

       super(context, attrs); xml

       Log.v("HelloView(Context context,AttributeSet attrs)","" +this.getHeight()+ "   " + this.getWidth());

    }

 

    /**

     * 繪製View

     * */

    protected void onDraw(Canvas canvas){

       Log.v("onDraw(Canvas canvas)","" + this.getHeight()+ "   " +this.getWidth());

       canvas.drawColor(Color.WHITE);

       myUseBitmapFactory(canvas);

       myUseBitmapDrawable(canvas);

       myUseInputStreamandBitmapDrawable(canvas);

    }
 
運行:



 
咱們觀察能夠發現, new View  的時候並無肯定了 View 的大小,而且系統就沒有調用 (Context context) 這個構造函數。
也就是說 View 大小是在 new View 以後 OnDraw 以前肯定的,那 onDraw 以前的又有那些方法了,呵呵,咱們試着 override 這個方法試試:

 

    protected void onMeasure(int widthMeasureSpec, intheightMeasureSpec) {

       // TODO Auto-generated method stub

       super.onMeasure(widthMeasureSpec, heightMeasureSpec);

       Log.v("onMeasure","" + this.getHeight()+ "   " +this.getWidth());

    }











 
運行:
 
 


咱們觀察發現: onMeasure 方法運行了兩次:第一次寬和高都是 0 ,可是第二次就變了,是否是能夠說是在這個方法中肯定的,可是實際上不必定會是這麼回事,這個咱們放在之後研究。這裏咱們只須要知道不是在 new View 時肯定的就行了。
 
 
2、在 XML 中定義時 View 大小

這個咱們直接上代碼:

main.xml 文件修改:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    >

<TextView 

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:text="@string/hello"

    />

    <view class="com.fxhy.stady.HelloView"

    android:layout_width="50dip"

    android:layout_height="120dip"

    />

</LinearLayout>

 


 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
mainActivity 

/**

 * 使用自定義的View

 * */

public class MainActivity extends Activity {

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);// 使用自定義的View

    }

}

 


 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
運行:
 
 


 
 

       
 
咱們發現,和咱們 Xml 中定義的大小同樣,哈哈,有興趣的能夠本身測試測試。
相關文章
相關標籤/搜索