Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
The scenario is - user selects the semester(sem1,sem2...etc) value from dropdown and its eehub.com/tag/branch">branch(cs,it...) from another and on the eehub.com/tag/basis">basis of the two selected value a listview contains subjects of the specified semester and eehub.com/tag/branch">branch get populated and on the eehub.com/tag/basis">basis of that subject i want to eehub.com/tag/display">display the syllabus of that subject..
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.syllabus); String[] semarray = new String[] { "Sem 1", "Sem 2", "Sem 3" }; String[] eehub.com/tag/branch">brancharray = new String[] { "CS", "EC", "EE" }; semester = (Spinner) findViewById(R.id.sems); eehub.com/tag/branch">branch = (Spinner) findViewById(R.id.eehub.com/tag/branch">branch); semarrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, semarray); semester.setAdapter(semarrayAdapter); eehub.com/tag/branch">brancharrayAdapter = new ArrayAdapter<String>( this, android.R.layout.simple_spinner_item, eehub.com/tag/branch">brancharray); eehub.com/tag/branch">branch.setAdapter(eehub.com/tag/branch">brancharrayAdapter); semester.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView> parent, View view, int position, long id) { item1 = semester.getSelectedItem().toString(); } @Override public void onNothingSelected(AdapterView> parent) { // TODO Auto-generated method stub } }); eehub.com/tag/branch">branch.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView> parent, View view, int position, long id) { item2 = eehub.com/tag/branch">branch.getSelectedItem().toString(); } @Override public void onNothingSelected(AdapterView> parent) { // TODO Auto-generated method stub } }); if(item1 == "Sem 1" REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
Try this one:
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.syllabus); String[] semarray = new String[] { "Sem 1", "Sem 2", "Sem 3" }; String[] brancharray = new String[] { "CS", "EC", "EE" }; semester = (Spinner) findViewById(R.id.sems); branch = (Spinner) findViewById(R.id.branch); listView = (ListView) findViewById(R.id.listview); semarrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, semarray); semester.setAdapter(semarrayAdapter); brancharrayAdapter = new ArrayAdapter<String>( this, android.R.layout.simple_spinner_item, brancharray); branch.setAdapter(brancharrayAdapter); semester.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView> parent, View view, int position, long id) { item1 = semester.getSelectedItem().toString(); if(item1 != null && item2 != null){ String[] listArray = new String[]{item1 + " " + item2}; listViewAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, listArray); listView.setAdapter(listViewAdapter); } } @Override public void onNothingSelected(AdapterView REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.