XML 단순 인 스 턴 스 대신 Android 코드 쓰기 컨트롤

953 단어 Android컨트롤XML
XML 단순 인 스 턴 스 대신 Android 코드 쓰기 컨트롤
간단 한 Button 컨트롤 연습
구현 코드:

Button btn = new Button(HandlerToActivity.this); 
LinearLayout.LayoutParams params=new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 
params.gravity = Gravity.CENTER_HORIZONTAL; 
params.topMargin = 10; 
btn.setLayoutParams(params); 
btn.setLayoutParams(params); 
btn.setTextColor(Color.WHITE); 
btn.setPadding(0, 50, 0, 2); 
btn.setGravity(Gravity.CENTER_HORIZONTAL); 
btn.setTextSize(14); 
btn.setText("  Button"); 
btn.setBackgroundResource(R.drawable.alertdialog_button); 
buttonLayout.addView(btn); 
주의해 야 할 문제:
1.LayoutParams 를 정의 합 니 다.일부 속성 은 Button 컨트롤 을 통 해 직접 설정 합 니 다.어떤 속성 은 Params 에 있 습 니 다.예 를 들 어 gravity,margin 등 입 니 다.
2.Layout 레이아웃 수신 도 정의 해 야 합 니 다.
읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기