Created
August 10, 2016 17:05
-
-
Save mplacona/f5e6b1230f149ff043ab74edd7ba5146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainActivity extends AppCompatActivity { | |
private Realm mRealm; | |
private RealmConfiguration mRealmConfig; | |
private EditText mText; | |
private RealmRecyclerView mNotes; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
mRealmConfig = new RealmConfiguration | |
.Builder(this) | |
.build(); | |
Realm.setDefaultConfiguration(mRealmConfig); | |
mRealm = Realm.getDefaultInstance(); | |
mText = (EditText) findViewById(R.id.et_text); | |
mNotes = (RealmRecyclerView) findViewById(R.id.rv_notes); | |
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); | |
setSupportActionBar(toolbar); | |
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab); | |
fab.setOnClickListener(new View.OnClickListener() { | |
@Override | |
public void onClick(View view) { | |
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) | |
.setAction("Action", null).show(); | |
} | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment