我想了解android的基礎知識,當我調用RelativeLayout.getWidth時,我將0作爲值而不是佈局的預期大小。當佈局寬度爲720時,RelativeLayout.getWidth返回0
我有一個RelativeLayout的填充我的屏幕:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/activity_one>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="test"
android:id="@+id/test"/>
</RelativeLayout >
但是當我使用下面的代碼在OnCreate(),我得到0而不是預期的屏幕寬度720
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_one);
RelativeLayout rl= (RelativeLayout) findViewById(R.id.activity_one);
TextView tempTextview = (TextView) findViewById(R.id.test);
tempTextview.setText("W: " + rl.getWidth() + " - H:" + rl.getHeight());
}
我一定在做一個非常愚蠢的錯誤,但我看不到什麼。
@Colin的確謝謝! - 我應該刪除這篇文章嗎? – Slamit
答案和問題總是建立在 – Bhargav