Android自訂View研究(五)–View的大小

來源:互聯網
上載者:User

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

一、        在Activity中直接new HelloView 時View的大小。

View的大小擷取可以用其中的兩種方法擷取:

 

   this.getHeight():擷取View的高

this.getWidth():擷取View的寬

 

我們可以做一個猜想,View的大小是在什麼時候確定的,是在new一個View的時候還是在onDraw()的時候?還是在其他時候?為了研究這個,我們分別在建構函式和onDraw中打上Log補丁(這個只是個人習慣的稱呼)。

--- >HelloVew.java

 

    public HelloView(Context context){

       super(context);

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

    }

    /**

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

     * */

    public HelloView(Context context,AttributeSet attrs){

       super(context, attrs);

       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, int heightMeasureSpec) {

       // TODO Auto-generated method stub

       super.onMeasure(widthMeasureSpec, heightMeasureSpec);

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

    }

 

 

 

 

 

 

運行:

 

 

 

 

我們觀察發現:onMeasure方法運行了兩次:第一次寬和高都是0,但是第二次就變了,是不是可以說是在這個方法中確定的,但是實際上不一定會是這麼回事,這個我們放在以後研究。這裡我們只需要知道不是在new View時確定的就好了。

 

 

二、在XML中定義時View大小

 

這個我們直接上代碼:

 

main.xml檔案修改:

 

 

 

 

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

<LinearLayout xmlns: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

    }

}

     

 

 

 

 

 

 

 

 

運行:

 

 

 

 

 

       

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.