91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中使用TextSwitcher實現自動切換文字功能

發布時間:2021-06-04 17:11:48 來源:億速云 閱讀:458 作者:Leah 欄目:移動開發

怎么在Android中使用TextSwitcher實現自動切換文字功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

布局文件:

<?xml version="1.0" encoding="utf-8" ?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:gravity="center_horizontal">
    <!--定義一個ViewSwitcher并且制定了文本切換時的動畫效果-->
    <TextSwitcher
      android:id="@+id/textSwitcher"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:inAnimation="@android:anim/slide_in_left"
      android:outAnimation="@android:anim/slide_out_right"
      android:onClick="next">
    </TextSwitcher>
</RelativeLayout>

關于文字定時切換的實現:

1.首先寫一個next方法,再這個歌方法中調用父類的setText()方法 實現了文字的設定

2.再主線程中開設一個性的線程用于圖片的切換 注意:線程中不能直接改變View,所以要發送小修再Handler對象中改變布局內容(文字)

實現如下:

public class MainActivity extends Activity {
  String[] string = new String[]{
      "我愛高數",
      "我愛概率論",
      "我愛計算機網絡",
      "我愛操作系統"
  };
  TextSwitcher textSwitcher;
  int curStr ;
  Handler handler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
      next(null);
    }
  };
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    textSwitcher = (TextSwitcher) findViewById(R.id.textSwitcher);
    textSwitcher.setFactory(new ViewSwitcher.ViewFactory() {
      @Override
      public View makeView() {
        TextView textView = new TextView(MainActivity.this);
        textView.setTextSize(40);
        textView.setTextColor(Color.RED);
        return textView;
      }
    });
    new Thread(){
      @Override
      public void run() {
        while (true){
          Message message = handler.obtainMessage();
          message.obj = 0;
          handler.sendMessage(message);
          try {
            sleep(1000);
          } catch (InterruptedException e) {
            e.printStackTrace();
          }
        }
      }
    }.start();
  }
  private void next(View scource){
    textSwitcher.setText(string[curStr = ( curStr++ % string.length )]);
  }
}

看完上述內容,你們掌握怎么在Android中使用TextSwitcher實現自動切換文字功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黔东| 时尚| 石屏县| 彰化市| 青铜峡市| 盐山县| 金山区| 茂名市| 虹口区| 三门峡市| 肇东市| 永靖县| 黑河市| 平度市| 达尔| 项城市| 格尔木市| 苍南县| 彰武县| 陆丰市| 阆中市| 榆中县| 抚顺市| 高碑店市| 定远县| 仙居县| 商丘市| 襄樊市| 孝昌县| 桐乡市| 长子县| 洪雅县| 舒城县| 文山县| 栖霞市| 湘西| 慈利县| 河南省| 西乡县| 铜鼓县| 萨迦县|