File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
java/openscience/crowdsource/video/experiments Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -81,15 +81,16 @@ public void onClick(View v) {
8181 }
8282
8383 final TextView crowdResultURL = (TextView ) findViewById (R .id .crowdResultURL );
84- crowdResultURL .setText (Html .fromHtml ("<a href=\" " + AppConfigService .getResultURL () + "\" >View your results in the public repository</a>" ));
84+ crowdResultURL .setText (Html .fromHtml ("<a href=\" " + AppConfigService .getResultURL () + "\" >View your results in the public repository</a>" ));
8585 crowdResultURL .setOnClickListener (new View .OnClickListener () {
8686 @ SuppressWarnings ({"unused" , "unchecked" })
8787 @ Override
8888 public void onClick (View arg0 ) {
89- AppLogger .logMessage ("Opening " + URL_CROWD_RESULTS + " ..." );
89+ String resultURL = AppConfigService .getResultURL ();
90+ AppLogger .logMessage ("Opening " + resultURL + " ..." );
9091
9192 Intent browserIntent =
92- new Intent (Intent .ACTION_VIEW , Uri .parse (URL_CROWD_RESULTS ));
93+ new Intent (Intent .ACTION_VIEW , Uri .parse (resultURL ));
9394
9495 startActivity (browserIntent );
9596 }
Original file line number Diff line number Diff line change 1010 <ScrollView
1111 android : layout_width =" fill_parent"
1212 android : layout_height =" wrap_content"
13- android : layout_marginTop =" 0dp " >
13+ android : layout_marginTop =" 30dp " >
1414 <LinearLayout
1515 android : layout_width =" fill_parent"
1616 android : layout_height =" wrap_content"
2525 android : gravity =" center_vertical"
2626 android : layout_width =" match_parent"
2727 android : layout_height =" 56dp"
28- android : layout_marginTop =" 25dp "
28+ android : layout_marginTop =" 10dp "
2929 android : layout_marginLeft =" 30dp"
3030
3131 android : layout_alignParentTop =" true"
You can’t perform that action at this time.
0 commit comments