已经多次询问过这个问题,但是每个人都给出了为什么会出现这种问题的原因(即在布局布局之前进行计算)。但我需要解决方案。我尝试了getBottom();
,getTop();
,getLocationOnScreen(int[] location);
。但是所有返回零值(0)。我甚至尝试在onStart();
中给出这些,以便为布局奠定时间,但没有运气。
这是我的代码:
TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView) findViewById(R.id.textView1);
Log.d("getBottom :", Integer.toString(tv.getBottom()));
Log.d("gettop :", Integer.toString(tv.getTop()));
int[] location = new int[2];
tv.getLocationOnScreen(location);
Log.d("getlocationonscreen values :", Integer.toString(location[0])+" "+Integer.toString(location[1]));
}
@Override
protected void onStart() {
Log.d("getBottom in onStart :", Integer.toString(tv.getBottom()));
Log.d("gettop in onStart :", Integer.toString(tv.getTop()));
int[] location = new int[2];
tv.getLocationOnScreen(location);
Log.d("getlocationonscreen in onStart :", Integer.toString(location[0])+" "+Integer.toString(location[1]));
super.onStart();
}
布局XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="156dp"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
</RelativeLayout>
再次,我为重复这个问题而道歉。提前谢谢。
答案 0 :(得分:13)
您将“测量”放在onWindowFocusChanged()
- 方法中
正如文档所述:
这是该活动对用户是否可见的最佳指标。
您也可以将它放在onResume()
中,这是应用程序完全在屏幕上并且处于活动状态之前的最后一步,但是:
请记住,onResume不是您的活动对用户可见的最佳指标;诸如键盘锁之类的系统窗口可以在前面。使用onWindowFocusChanged(boolean)可以确定您的活动对用户可见(例如,恢复游戏)。
如果窗口/视图尚未显示,则无法保证其测量结果,因此以前的方法会更好。