I\'ve rolled my own custom view and can draw to the screen alright, but what I\'d really like to do is set the measuredHeigh of the screen to, say, 1000px and let the user s
If you are wanting the entire activity to be a ScrollView, then do something like this:
Then the activity that uses this layout can look something like this:
public class ScrollingActivity extends Activity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
this.setContentView(R.layout.scroll_layout);
}
}
This assumes that the name of your xml file is scroll_layout.xml.