This could be device specific issue,
Try to add this attribute, however this is deprecated,
android:capitalize="sentences"
If not try to apply it in Java file,
TextView txtCapitalize = (TextView) findViewById(R.id.txtCapitalize);
txtCapitalize.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
Hope this helps.