소스코드는 이렇구요
button1.padding(); 넣고도 안되고
button1.layout 넣으면 크기가 커집니다 해결 방안이 없을까욧?ㅠㅠ
public class UITest extends Activity 
{
CamView mPreview;

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        FrameLayout frameLayout = new FrameLayout(this);
        setContentView(frameLayout);
        
        mPreview = new CamView(this); //frameLayout.addView(mPreview, 1);

        frameLayout.addView(mPreview);
        
        Button button2 = new Button(this);
        button2.setText("경로설");
               
        Button button3 = new Button(this);
        button3.setText("경로");
        frameLayout.addView(button3);
        
        Button button4 = new Button(this);
        button4.setText("경");
        frameLayout.addView(button4, 50, 50);

        
    }
}