skip to Main Content

How to return values of list from another activity in Android studio?

I'm new to Android Studio and try to develop my first application. I have 3 activities MainActivity, DashboardActivity, and SplashActivity. DashboardActivity - protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_dashboard); Hooks(); allQuestionsList=listS; Collections.shuffle(allQuestionsList); modelClass = listS.get(index); setAllData(); } SplashActivity- public class…

VIEW QUESTION

Reduce space between widgets in a column in flutter

The vertical space between the two text widgets is more than I like. I haven't added any padding or margin. Can it be reduced somehow? Here's the code: Container( margin: EdgeInsets.only(top: 60, left: 30), alignment: Alignment.centerLeft, child: Column( crossAxisAlignment: CrossAxisAlignment.start,…

VIEW QUESTION
Back To Top
Search