で構成されたビューがありTableLayout, TableRow and TextView
ます。グリッドのように見せたいです。このグリッドの高さと幅を取得する必要があります。メソッドgetHeight()
とはgetWidth()
常に0を返します。これは、グリッドを動的にフォーマットするとき、およびXMLバージョンを使用するときにも発生します。
ビューの寸法を取得する方法は?
以下は、結果を確認するためにデバッグで使用したテストプログラムです。
import android.app.Activity;
import android.os.Bundle;
import android.widget.TableLayout;
import android.widget.TextView;
public class appwig extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.maindemo); //<- includes the grid called "board"
int vh = 0;
int vw = 0;
//Test-1 used the xml layout (which is displayed on the screen):
TableLayout tl = (TableLayout) findViewById(R.id.board);
tl = (TableLayout) findViewById(R.id.board);
vh = tl.getHeight(); //<- getHeight returned 0, Why?
vw = tl.getWidth(); //<- getWidth returned 0, Why?
//Test-2 used a simple dynamically generated view:
TextView tv = new TextView(this);
tv.setHeight(20);
tv.setWidth(20);
vh = tv.getHeight(); //<- getHeight returned 0, Why?
vw = tv.getWidth(); //<- getWidth returned 0, Why?
} //eof method
} //eof class
getHeight()
をgetWidth()
し、アクティビティライフサイクルがビューに自分自身を測定するように要求した後、つまり、この種onResume()
のことを実行するだけです。まだレイアウトされていないオブジェクトがその寸法を知っていると期待すべきではありません。それが全体のトリックです。以下に示す魔法の必要はありません。
getHeight()/Width()
、onResume()
値が0を超えることはありませんでした。