Working with #3129 issue (#3146)

* Replace Hard-Coded strings with those from strings.xml.
This commit is contained in:
PavelAplevich 2019-09-09 08:31:30 +03:00 committed by Ashish Kumar
parent 0349e3e069
commit 864ecad2e7
6 changed files with 15 additions and 8 deletions

View file

@ -163,7 +163,7 @@ public class QuizResultActivity extends AppCompatActivity {
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
intent.setType("image/png");
startActivity(Intent.createChooser(intent, "Share image via"));
startActivity(Intent.createChooser(intent, getString(R.string.share_image_via)));
} catch (Exception e) {
e.printStackTrace();
}