how to connect java class file to xml file

Solutions on MaxInterview for how to connect java class file to xml file by the best coders in the world

showing results for - "how to connect java class file to xml file"
Clotilde
15 Aug 2016
1public class Login extends Activity {
2    @Override
3    protected void onCreate(Bundle savedInstanceState) { 
4        super.onCreate(savedInstanceState);
5        setContentView(R.layout.login_activity.xml);
6        ...
7    }
8}
9