カテゴリー:
ViewGroup.LayoutParamsクラス
閲覧数:385 配信日:2014-03-14 15:57
例1
ボタンをアクティビティへ追加し、かつ、配置方法も指定した例
・画面レイアウトを動的に定義(Java)
・配置方法指定(WRAP_CONTENT利用)
▼D:/Android/workspace/SetContentView2
package android.style;
import android.app.Activity;
import android.os.Bundle;
import android.widget.Button;
import android.view.ViewGroup.LayoutParams;
public class SetContentView2Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Button button = new Button(this);
button.setText("ボタン1");
setContentView(button, new LayoutParams(
LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT));
}
}