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
@Override | |
protected void onActivityResult(int requestCode, int resultCode, Intent data) { | |
EventBus.getInstance().postQueue(new Event(requestCode, resultCode, data)); | |
if (requestCode == EDIT && resultCode == RESULT_OK) { | |
Log.d("EDIT", "RESULT_OK"); | |
UserEntity userEntity = (UserEntity) data.getSerializableExtra("USER"); |
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
import android.annotation.SuppressLint; | |
import android.app.Activity; | |
import android.support.v7.widget.CardView; | |
import android.view.View; | |
import android.widget.GridLayout; | |
import android.widget.TextView; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; |
NewerOlder