#android
#Android
Вопрос:
как анализировать данные из listitems в textview facebook. вот мой код, но он не может работать, он только анализирует данные в gmail, email textview.
String text = (String)parent.getItemAtPosition(position);
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, text);
sharingIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject");
startActivity(Intent.createChooser(sharingIntent, "Share text"));
k.