优化问答app

1.用户点击next按钮时才能显示下一题,其实用户直接点击TextView才是最好的用户体验

我们直接给TextView设置一个onclickListener即可,写一个函数,在onClick中调用

private void getNext(){
       //add index and update the content of the textview
       mCurrentIndex=(mCurrentIndex+1)%questions.length;
       int questionid=questions[mCurrentIndex].getmQuestionId();
       mTextView.setText(questionid);
   }

mTextView.setOnClickListener(new View.OnClickListener() {
         
          @Override
          public void onClick(View v) {
              getNext();
          }
      });

2.添加后退按钮

首先在xml中添加后退按钮

<Button
    android:id="@+id/last_question"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/last_question"
    android:drawableLeft="@drawable/arrow_left"
    android:drawablePadding="6dp"
    ></Button>

在mainactivity中先得到这个按钮再给这个按钮添加监听器

//get the last_question button
      mLast=(Button) findViewById(R.id.last_question);
      mLast.setOnClickListener(new View.OnClickListener() {
         
          @Override
          public void onClick(View v) {
              getLast();
          }
      });

private void getLast(){
      //reduce index and update the content of textview
      mCurrentIndex=(mCurrentIndex+2)%questions.length;
      int questionid=questions[mCurrentIndex].getmQuestionId();
      mTextView.setText(questionid);
  }

3.前进和倒退按钮不用文字来表示,使用图标来表示

image

这是ImageButton和Button与View之间的继承关系

转载于:https://my.oschina.net/u/2275839/blog/379854

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值