Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
OK, that helps . I was taking the screen too literally when it says "Recently sent" and I think it really means "recently received" from the phone user's viewpoint. I'll home in the culprit before long. Thank you.You said, "you can check your notification settings and see what recent apps sent you notifications when you here the sound again." How? There is no way I know of to see what recent app sent me a notification. If I had such a mechanism it would be easy to catch the culprit. By the way, I have not installed a new app for more than a year. And do not intend to.


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_user_profile);
linearLayout = findViewById(R.id.mLinearLayout);
Intent intent = getIntent();
String username = intent.getStringExtra("username");
ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("Image");
query.whereEqualTo("username", username);
query.orderByDescending("createdAt");
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> objects, ParseException e) {
if (e == null && objects.size() > 0) {
for (ParseObject object : objects) {
ParseFile file = (ParseFile) object.get("image");
file.getDataInBackground(new GetDataCallback() {
@Override
public void done(byte[] data, ParseException e) {
if (e == null && data != null) {
Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0,data.length);
ImageView imageView = new ImageView(getApplicationContext());
imageView.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.WRAP_CONTENT
));
imageView.setImageBitmap(bitmap);
linearLayout.addView(imageView);
}
}
});
}
}
else{
Log.e("NO OBJECTS FOUND","NO OBJECTS FOUND");
}
}
});
}