OnCreate() 에서는 

 LinearLayout panel = (LinearLayout) findViewById(R.id.panel);

 panel.getHeight() 이값을 부르면 0 으로 나오더라구요..

 구글링결과 높이를 가져오려면 OnWindowFocusChange() 함수호출에서 이곳에 넣으라고 하는데

그런데도 높이가 "0"으로 나오네요 ㅠㅠ.. 어떻게 하면 값을 가져올수있나요?


-----------------------


<LinearLayout

            android:id="@+id/panel"

 >

    <TextView

         android:text="Item1" />

   <TextView

         android:text="Item2" />

   <TextView

         android:text="Item3" />

           

 </LinearLayout>