真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何進(jìn)行增加prev,next按鈕實現(xiàn)問題的遍歷分析-創(chuàng)新互聯(lián)

如何進(jìn)行增加prev,next按鈕實現(xiàn)問題的遍歷分析,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供向陽網(wǎng)站建設(shè)、向陽做網(wǎng)站、向陽網(wǎng)站設(shè)計、向陽網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、向陽企業(yè)網(wǎng)站模板建站服務(wù),10多年向陽做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

 1)修改strings.xml,增加兩個按鈕

  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)修改activity_main.xml,布局兩個按鈕

  

    android:layout_width="wrap_content"

    android:layout_height="wrap_content">

    

        android:id="@+id/prev_button"

        android:text="@string/prev_button"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:drawablePadding="4dp"

        android:drawableRight="@drawable/arrow_left"/>

    

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:id="@+id/next_button"

        android:text="@string/next_button"

        android:drawablePadding="4dp"

        android:drawableRight="@drawable/arrow_right"/>

  

  3)修改MainActivity.java

  private Button mNextButton;

  private TextView mQuestionTextView;

  private Button mPrevButton;

  private Question[] mQuestionsBank=new Question[]{

        new Question(R.string.question_oceans,true),

        new Question(R.string.question_mideast,false),

        new Question(R.string.question_africa,false),

        new Question(R.string.question_americas,true),

        new Question(R.string.question_asia,true),

  };

  private int mCurrentIndex=0;

  private void updateQuestion(){

    int question=mQuestionsBank[mCurrentIndex].getTextResId();

    mQuestionTextView.setText(question);

  }

  4)修改onCreate方法

  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();

    }

  });

效果如圖

如何進(jìn)行增加prev,next按鈕實現(xiàn)問題的遍歷分析

看完上述內(nèi)容,你們掌握如何進(jìn)行增加prev,next按鈕實現(xiàn)問題的遍歷分析的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道,感謝各位的閱讀!


本文題目:如何進(jìn)行增加prev,next按鈕實現(xiàn)問題的遍歷分析-創(chuàng)新互聯(lián)
網(wǎng)頁地址:http://weahome.cn/article/deojss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部