use of com.applozic.mobicomkit.uiwidgets.people.fragment.ProfileFragment in project Applozic-Android-SDK by AppLozic.
the class ConversationActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String jsonString = FileUtils.loadSettingsJsonFile(getApplicationContext());
if (!TextUtils.isEmpty(jsonString)) {
alCustomizationSettings = (AlCustomizationSettings) GsonUtils.getObjectFromJson(jsonString, AlCustomizationSettings.class);
} else {
alCustomizationSettings = new AlCustomizationSettings();
}
if (!TextUtils.isEmpty(alCustomizationSettings.getChatBackgroundImageName())) {
resourceId = getResources().getIdentifier(alCustomizationSettings.getChatBackgroundImageName(), "drawable", getPackageName());
}
if (resourceId != 0) {
getWindow().setBackgroundDrawableResource(resourceId);
}
setContentView(R.layout.quickconversion_activity);
Toolbar myToolbar = (Toolbar) findViewById(R.id.my_toolbar);
setSupportActionBar(myToolbar);
baseContactService = new AppContactService(this);
conversationUIService = new ConversationUIService(this);
mobiComMessageService = new MobiComMessageService(this, MessageIntentService.class);
quickConversationFragment = new MobiComQuickConversationFragment();
connectivityReceiver = new ConnectivityReceiver();
geoApiKey = Utils.getMetaDataValue(getApplicationContext(), GOOGLE_API_KEY_META_DATA);
activityToOpenOnClickOfCallButton = Utils.getMetaDataValue(getApplicationContext(), ACTIVITY_TO_OPEN_ONCLICK_OF_CALL_BUTTON_META_DATA);
layout = (LinearLayout) findViewById(R.id.footerAd);
applozicPermission = new ApplozicPermissions(this, layout);
childFragmentLayout = (RelativeLayout) findViewById(R.id.layout_child_activity);
profilefragment = new ProfileFragment();
profilefragment.setAlCustomizationSettings(alCustomizationSettings);
contactsGroupId = MobiComUserPreference.getInstance(this).getContactsGroupId();
if (Utils.hasMarshmallow()) {
applozicPermission.checkRuntimePermissionForStorage();
}
mActionBar = getSupportActionBar();
if (!TextUtils.isEmpty(alCustomizationSettings.getThemeColorPrimary()) && !TextUtils.isEmpty(alCustomizationSettings.getThemeColorPrimaryDark())) {
mActionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor(alCustomizationSettings.getThemeColorPrimary())));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
getWindow().setStatusBarColor(Color.parseColor(alCustomizationSettings.getThemeColorPrimaryDark()));
}
}
inviteMessage = Utils.getMetaDataValue(getApplicationContext(), SHARE_TEXT);
retry = 0;
if (savedInstanceState != null) {
capturedImageUri = savedInstanceState.getString(CAPTURED_IMAGE_URI) != null ? Uri.parse(savedInstanceState.getString(CAPTURED_IMAGE_URI)) : null;
videoFileUri = savedInstanceState.getString(CAPTURED_VIDEO_URI) != null ? Uri.parse(savedInstanceState.getString(CAPTURED_VIDEO_URI)) : null;
mediaFile = savedInstanceState.getSerializable(LOAD_FILE) != null ? (File) savedInstanceState.getSerializable(LOAD_FILE) : null;
contact = (Contact) savedInstanceState.getSerializable(CONTACT);
channel = (Channel) savedInstanceState.getSerializable(CHANNEL);
currentConversationId = savedInstanceState.getInt(CONVERSATION_ID);
if (contact != null || channel != null) {
if (channel != null) {
conversation = ConversationFragment.newInstance(null, channel, currentConversationId, null);
} else {
conversation = ConversationFragment.newInstance(contact, null, currentConversationId, null);
}
addFragment(this, conversation, ConversationUIService.CONVERSATION_FRAGMENT);
}
} else {
setSearchListFragment(quickConversationFragment);
addFragment(this, quickConversationFragment, ConversationUIService.QUICK_CONVERSATION_FRAGMENT);
}
mobiComKitBroadcastReceiver = new MobiComKitBroadcastReceiver(this);
InstructionUtil.showInfo(this, R.string.info_message_sync, BroadcastService.INTENT_ACTIONS.INSTRUCTION.toString());
mActionBar.setTitle(R.string.conversations);
mActionBar.setDisplayHomeAsUpEnabled(true);
mActionBar.setHomeButtonEnabled(true);
googleApiClient = new GoogleApiClient.Builder(getApplicationContext()).addConnectionCallbacks(this).addOnConnectionFailedListener(this).addApi(LocationServices.API).build();
onNewIntent(getIntent());
Boolean takeOrder = getIntent().getBooleanExtra(TAKE_ORDER, false);
if (!takeOrder) {
Intent lastSeenStatusIntent = new Intent(this, UserIntentService.class);
lastSeenStatusIntent.putExtra(UserIntentService.USER_LAST_SEEN_AT_STATUS, true);
UserIntentService.enqueueWork(this, lastSeenStatusIntent);
}
if (ApplozicClient.getInstance(this).isAccountClosed() || ApplozicClient.getInstance(this).isNotAllowed()) {
accountStatusAsyncTask = new SyncAccountStatusAsyncTask(this, layout, snackbar);
accountStatusAsyncTask.execute();
}
registerReceiver(connectivityReceiver, new IntentFilter(ConnectivityManager.CONNECTIVITY_ACTION));
if (getIntent() != null) {
Set<String> userIdLists = new HashSet<String>();
if (getIntent().getStringArrayListExtra(ConversationUIService.GROUP_NAME_LIST_CONTACTS) != null) {
MobiComUserPreference.getInstance(this).setIsContactGroupNameList(true);
userIdLists.addAll(getIntent().getStringArrayListExtra(ConversationUIService.GROUP_NAME_LIST_CONTACTS));
} else if (getIntent().getStringArrayListExtra(ConversationUIService.GROUP_ID_LIST_CONTACTS) != null) {
MobiComUserPreference.getInstance(this).setIsContactGroupNameList(false);
userIdLists.addAll(getIntent().getStringArrayListExtra(ConversationUIService.GROUP_ID_LIST_CONTACTS));
}
if (!userIdLists.isEmpty()) {
MobiComUserPreference.getInstance(this).setContactGroupIdList(userIdLists);
}
}
LocalBroadcastManager.getInstance(this).registerReceiver(mobiComKitBroadcastReceiver, BroadcastService.getIntentFilter());
}
Aggregations