facebook twitter hatena line email

Android/レイアウト/基本

提供: 初心者エンジニアの簡易メモ
2018年12月10日 (月) 10:27時点におけるAdmin (トーク | 投稿記録)による版 (レイアウト追加)

移動: 案内検索

LayoutParamsについて

  • wrap_content・・サイズを自動調整して表示する
  • match_parent・・親オブジェクトのサイズ一杯に表示する
  • fill_parent・・親オブジェクトのサイズ一杯に表示する(こちらは昔の指定方法で非推奨)

参考:http://tande.jp/lab/2013/01/1962


レイアウト追加

右下にボタン追加

int WC = ViewGroup.LayoutParams.WRAP_CONTENT;
int MP = ViewGroup.LayoutParams.MATCH_PARENT;
RelativeLayout btnLayout = new RelativeLayout(mContext);
btnLayout.setLayoutParams(new RelativeLayout.LayoutParams(MP, MP));
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(WC, WC);
lp.addRule(RelativeLayout.ALIGN_PARENT_RIGHT);
lp.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
btnLayout.addView(playButton, lp);
addView(btnLayout);