Skip to content
Snippets Groups Projects
Commit c8641d11 authored by akwizgran's avatar akwizgran
Browse files

Added a ScrollView to SetupActivity. Fixes bug #34.

parent c5b20ffb
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.ScrollView;
import android.widget.TextView;
public class SetupActivity extends RoboActivity implements OnClickListener {
......@@ -145,7 +146,10 @@ public class SetupActivity extends RoboActivity implements OnClickListener {
progress.setVisibility(GONE);
layout.addView(progress);
setContentView(layout);
ScrollView scroll = new ScrollView(this);
scroll.addView(layout);
setContentView(scroll);
}
private void enableOrDisableContinueButton() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment