zhuan.txt 464 B

123456789101112131415161718192021222324252627282930
  1. -- 狗头保命
  2. layout={
  3. LinearLayout;
  4. layout_height="fill";
  5. layout_width="fill";
  6. gravity="center";
  7. {
  8. TextView;
  9. text=读取文件(tdata.."翻转.txt");
  10. textColor=0xff000000;
  11. textSize="30sp";
  12. id="zx";
  13. };
  14. };
  15. activity.setContentView(loadlayout(layout))
  16. function 旋转()
  17. zx.setRotationY(zx.getRotationY()+5)
  18. end
  19. function 刷新()
  20. require "import"
  21. while true do
  22. Thread.sleep(50)
  23. call("旋转")
  24. end
  25. end
  26. thread(刷新)