I have issue in scrolling in Android 4.1.2 (Samsung Note N7000). Apparently this is the case for every old version of Android. It is working fine in Samsung S4. Could you please help me with that? Below is my XML file for your reference.
<Alloy> <Window id="ITbeneficiaryWin" title="SELECT BENEFICIARIES" navTintColor="white" modal="true" barImage="Images/IPhone-retina_Header01.png" backgroundImage="Images/IPhone-retina_02.png" onOpen="fetchbeneficiaries" backgroundRepeat="false"> <TitleControl> <Label id="titleControl" color="white">SELECT BENEFICIARIES</Label> </TitleControl> <ScrollView id="scrollview" showVerticalScrollIndicator= "true" contentWidth= "auto" contentHeight= "auto"> <!--contentWidth= "auto" contentHeight= "auto"--> <View id="createView" layout="vertical"> <Button id="btnCreate" onClick="addBeneficiary" title="ADD BENEFICIARY" /> </View> <Label id="NoRecordFound" color="white"></Label> <TableView id="table"></TableView> <ActivityIndicator id="activityIndicator" message="Loading..."/> </ScrollView> <LeftNavButton> <Button title="Back" onClick="backWin" /> </LeftNavButton> <!--<RightNavButton> <Button id="add" onClick="addBeneficiary" title="Add" /> </RightNavButton>--> </Window> </Alloy>