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

dlopen failed for prebuilt so file at Android Studio

I am making an app with android studio. There is a problem trying to use external prebuilt so. main/cpp/CMakeLists.txt was declared as follows. add_library(ace SHARED ace.cpp) add_library(banana SHARED IMPORTED) set_target_properties(banana PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/../jniLibs/${ANDROID_ABI}/libbanana.so) target_link_libraries(ace banana) And then I get the…

VIEW QUESTION
Back To Top
Search