歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android 獲取按鈕Button的高度、寬度、坐標

當按鈕初始時,Android是獲取不到高度、寬度、坐標值的,需要通過延時的方式獲取,代碼如下:

定義全局按鈕對像

private Button bt1;

然後在onCreate裡面:

  1. setContentView(R.layout.main);  
  2.   
  3. bt1 = (Button) findViewById(R.id.Button01);  
  4. new Thread()  
  5.      {  
  6.         @Override  
  7.           public void run()  
  8.           {  
  9.          synchronized(this)  
  10.          {  
  11.           try  
  12.           {  
  13.            wait(1000); //1秒   
  14.           }  
  15.           catch (InterruptedException e)  
  16.           {  
  17.            // TODO Auto-generated catch block   
  18.            e.printStackTrace();  
  19.           }  
  20.          }  
  21.          Log.i("Test""高度:" + bt1.getHeight());  
  22.             Log.i("Test""寬度:" + bt1.getWidth());  
  23.             Log.i("Test""坐標x:" + bt1.getRight());  
  24.             Log.i("Test""坐標y:" + bt1.getTop());  
  25.           }  
  26.      }.start();  
Copyright © Linux教程網 All Rights Reserved