首页 > 其他分享 >android stdio中marqueeRepeatLimit无法循环播放

android stdio中marqueeRepeatLimit无法循环播放

时间:2023-02-25 17:12:47浏览次数:50  
标签:控件 Context stdio marqueeRepeatLimit attrs context android public MyTextView

首先,这个控件需要得到焦点,因此来实现循环播放,因此我们要

 

等我们再次启动虚拟机时,我们能够发现再次点击文字,就能够使控件文字循环播放。

 

但是这样点击文字循环会让整个页面看起来很傻逼,弄得就好像我们故意跟它显摆似的,

为了防止脑残瞎比比,我的评价是,不如完善以下我们的代码。

首先在主java文件下创建一个类名为MyTextView

 

 

下一步将这个类继承TextView,然后创建以下四个方法

public MyTextView(Context context) {
super(context);
}

public MyTextView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}

public MyTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public boolean isFocused(){
return true;
}///以此无条件的获得焦点

最后将我们的.xml文件中的VextView控件改称自己新写的那个控件(写个com. ,然后找自己新写的空间路径就ok了)

 

标签:控件,Context,stdio,marqueeRepeatLimit,attrs,context,android,public,MyTextView
From: https://www.cnblogs.com/cocotun/p/17154791.html

相关文章

  • Android studio控件Imageview
      一:<ImageViewandroid:src="@drawable/yourname"//资源来源android:scaleType="centerInside"//缩放方式android:layout_width="200dp"//宽android:......
  • Android Studio 设置视图的间距
    首先区分两个类型marginpaddingmargin是指当前视图与平级视图只见的关系距离有layout_marginlayout_marginLeftlayout_marginToplayout_marginRightlayout_marginB......
  • Android Studio 设置视图宽高
    这里有两种方法而第一种方法又分不同的类型以下是具体内容1、采用wrap_content定义wrap_content表示和自身一样的长度按照内容的多少去设定空间大小,然后按照权重的比......
  • Android Studio 设置文字大小和颜色
    设置文字大小分为两种方式1、在xml中进行文字的设置,再在java文件中进行获取显示<?xmlversion="1.0"encoding="utf-8"?><LinearLayoutxmlns:android="http://schema......
  • Ubuntu 16.04上安装openjdk7--编译Android6.0使用
    问题背景:需要在编译服务器上编译android6.0代码。这个版本需要使用openjdk7。参考来自官网的信息:https://source.android.com/docs/setup/start/older-versions?hl=zh-c......
  • Android Studio上运行Flutter,报错could not find io.flutter:flutter_embedding_debug
    AndroidStudio4.2.0,Flutter2.2.3Dart2.13.4下载​​io.flutter.zip​​......
  • Android 基础知识4-2.10 GridLayout(网格布局)详解
    一、GridLayout(网格布局)概述        GridLayout布局是Android4.0以后引入的新布局,和TableLayout(表格布局)有点类似,不过它功能更多,也更加好用,最大的特点是放......
  • Android 基础知识4-2.9 FrameLayout(帧布局)详解
    一、FrameLayout(帧布局)概述        FrameLayout又称作帧布局,它相比于LinearLayout和RelativeLayout要简单很多,因为它的应用场景也少了很多。这种布局没有方便的定位......
  • Android 基础知识4-3.1 TextView(文本框)详解
    一、前言    TextView就是一个显示文本标签的控件,就是用来显示文本。可以在代码或者XML中设置字体,字体大小,字体颜色,字体样式(加粗级斜体),文字截断(比如:只显示10个字,......
  • 上班第一天 Android 环境配置
    其实是昨天把大概回归Android开发第一天学会查然后等待反正我是不希望以后再查了写出来吧去谷歌那边把androidstudio下载下来更新jdk版本(与传统的java开发不同......