Back to project page RoboBinding-gallery.
The source code is released under:
Apache License
If you think the Android project RoboBinding-gallery listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.robobinding.gallery.activity; // ww w . j av a 2 s.com import org.robobinding.gallery.R; import org.robobinding.gallery.presentationmodel.EditTextPresentationModel; import android.os.Bundle; /** * * @since 1.0 * @version $Revision: 1.0 $ * @author Cheng Wei */ public class EditTextActivity extends AbstractActivity { private EditTextPresentationModel presentationModel; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); presentationModel = new EditTextPresentationModel(); initializeContentView(R.layout.activity_edittext, presentationModel); } }