TableLayoutで、列をめいっぱい拡張する設定

行に複数のビューを設定した時に、まだ横幅があいているときに、

ある列をめいっぱい広げる設定

TableLayoutのインスタンスの

setColumnStretchable を使う

TableLayout tableLayout = new TableLayout(this);

// 列の2番目を自動的に拡張する設定
tableLayout.setColumnStretchable(1, true);

setContentView(tableLayout);

Android

Posted by GENDOSU