Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Ergodic Analysis of how to add prev,next Button to implement

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

How to add prev,next buttons to achieve the ergodic analysis, I believe that many inexperienced people do not know what to do, so this paper summarizes the causes of the problem and solutions, through this article I hope you can solve this problem.

1) modify strings.xml to add two buttons

Next one

Prev_button

1The Pacific Ocean is larger than the Atlantic Ocean

2The Suez Canal connects the Red Sea and the Indian Ocean

3the source of the nile River is in Egypt

4the amazon river is the longest river in the USA

5Lake Baikal is the world\'s oldest and deepest freshwater lake

2) modify activity_main.xml and lay out two buttons

3) modify MainActivity.java

Private Button mNextButton

Private TextView mQuestionTextView

Private Button mPrevButton

Private Question [] mQuestionsBank=new Question [] {

New Question (R.string.scientific oceans.true)

New Question (R.string.creative mideast.false)

New Question (R.string.Fracula false)

New Question (R.string.diagnostic americas.true)

New Question (R.string.originalasiatrue)

}

Private int mCurrentIndex=0

Private void updateQuestion () {

Int question= mQuestionsBank [mCurrentIndex] .getTextResId ()

MQuestionTextView.setText (question)

}

4) modify onCreate method

MNextButton = (Button) findViewById (R.id.next_button)

MNextButton.setOnClickListener (new View.OnClickListener () {

@ Override

Public void onClick (View view) {

MCurrentIndex= (mCurrentIndex+1)% mQuestionsBank.length

UpdateQuestion ()

}

});

MPrevButton= (Button) findViewById (R.id.prev_button)

MPrevButton.setOnClickListener (new View.OnClickListener () {

@ Override

Public void onClick (View view) {

MCurrentIndex-=1

If (mCurrentIndex==-1) {

MCurrentIndex=mQuestionsBank.length-1

}

UpdateQuestion ()

}

});

The effect is as shown in the picture

After reading the above, do you know how to add prev,next buttons to implement the traversal analysis of the problem? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report