How to set a Button on Activity screen in Android Java

1 Answer

0 votes
package com.example.avi.myapplication;

import android.app.Activity;
import android.os.Bundle;
import android.widget.RelativeLayout;
import android.widget.Button;
import android.graphics.Color;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        RelativeLayout myLayout = new RelativeLayout(this);
        Button myButton = new Button(this);

        myLayout.addView(myButton);
        myLayout.setBackgroundColor(Color.BLUE);

        myButton.setBackgroundColor(Color.GREEN);
        myButton.setText("Login");

        setContentView(myLayout);
    }
}

 



answered Mar 24, 2017 by avibootz
...