mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
Formatting
This commit is contained in:
parent
d6c101954b
commit
48f9983fbd
1 changed files with 5 additions and 9 deletions
|
@ -73,15 +73,11 @@ public class Tutorial1 extends Activity implements SurfaceHolder.Callback {
|
|||
private void setMessage(final String message) {
|
||||
final TextView tv = (TextView) this.findViewById(R.id.textview_message);
|
||||
Log.d("GStreamer", "Received message " + message);
|
||||
try {
|
||||
runOnUiThread (new Runnable() {public void run()
|
||||
{
|
||||
tv.setText(message);
|
||||
}
|
||||
});
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
runOnUiThread (new Runnable() {
|
||||
public void run() {
|
||||
tv.setText(message);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
static {
|
||||
|
|
Loading…
Reference in a new issue