Android 使用TextView實現跑馬燈效果

来源:https://www.cnblogs.com/MrChen-/archive/2019/01/23/10310728.html
-Advertisement-
Play Games

前言 我們在開發中經常會遇到一個小問題。比如下麵一個小例子: 這個文字太長,單行中導致無法全部顯示出來,這就是今天要實現的功能。 當然,百度中也有很多這種解決方案。 其中有一種,例如: android:ellipsize="marquee" android:focusable="true" andr ...


前言

我們在開發中經常會遇到一個小問題。比如下麵一個小例子:

 

這個文字太長,單行中導致無法全部顯示出來,這就是今天要實現的功能。 當然,百度中也有很多這種解決方案。

其中有一種,例如:

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:text="@string/hello_world" />

android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"

xml中添加這3行 就能實現效果了。

 

這種方法確實可以實現。

事實上開發過程中,佈局是非常複雜和多變的,並不是我們一個TextView就能解決所有的佈局和要求。

例如,現在用兩個TextView 

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingBottom="@dimen/activity_vertical_margin"
 6     android:paddingLeft="@dimen/activity_horizontal_margin"
 7     android:paddingRight="@dimen/activity_horizontal_margin"
 8     android:paddingTop="@dimen/activity_vertical_margin"
 9     tools:context=".MainActivity" >
10 
11     <TextView
12         android:id="@+id/textview1"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:ellipsize="marquee"
16         android:focusable="true"
17         android:focusableInTouchMode="true"
18         android:singleLine="true"
19         android:text="@string/hello_world" />
20 
21     <TextView
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_below="@id/textview1"
25         android:ellipsize="marquee"
26         android:layout_marginTop="20dp"
27         android:focusable="true"
28         android:focusableInTouchMode="true"
29         android:singleLine="true"
30         android:text="@string/hello_world" />
31 
32 </RelativeLayout>

這個簡單的功能就滿足不了了。

第一個跑馬燈效果沒問題,第二個就沒實現了,平常開發中,兩個TextView都解決不了,平常開發中更解決不了了。

這就是今天我所要講的內容。

首先,我們先建一個類,繼承TextView這個類。

 1 package com.example.marqueetextview;
 2 
 3 import android.content.Context;
 4 import android.util.AttributeSet;
 5 import android.view.ViewDebug.ExportedProperty;
 6 import android.widget.TextView;
 7 
 8 public class MarqueeText extends TextView{
 9 
10     public MarqueeText(Context context) {
11         super(context);
12     }
13 
14     public MarqueeText(Context context, AttributeSet attrs, int defStyle) {
15         super(context, attrs, defStyle);
16     }
17 
18     public MarqueeText(Context context, AttributeSet attrs) {
19         super(context, attrs);
20     }
21     @Override
22     @ExportedProperty(category = "focus")
23     public boolean isFocused() {
24         return true;
25     }
26 }

這個時候實現TextView中的一個方法,isFocused(), 返回改成return true。

 然後進Xml中 把TextView修改成我們自定義的這個控制項。

 

 1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:tools="http://schemas.android.com/tools"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:paddingBottom="@dimen/activity_vertical_margin"
 6     android:paddingLeft="@dimen/activity_horizontal_margin"
 7     android:paddingRight="@dimen/activity_horizontal_margin"
 8     android:paddingTop="@dimen/activity_vertical_margin"
 9     tools:context=".MainActivity" >
10 
11     <com.example.marqueetextview.MarqueeText
12         android:id="@+id/textview1"
13         android:layout_width="wrap_content"
14         android:layout_height="wrap_content"
15         android:ellipsize="marquee"
16         android:focusable="true"
17         android:focusableInTouchMode="true"
18         android:singleLine="true"
19         android:text="@string/hello_world" />
20 
21     <com.example.marqueetextview.MarqueeText
22         android:layout_width="wrap_content"
23         android:layout_height="wrap_content"
24         android:layout_below="@id/textview1"
25         android:layout_marginTop="20dp"
26         android:ellipsize="marquee"
27         android:focusable="true"
28         android:focusableInTouchMode="true"
29         android:singleLine="true"
30         android:text="@string/hello_world" />
31 
32 </RelativeLayout>

然後我們再看一下效果。

已經全部實現成功了。

那這到底是為什麼呢? 奧秘就在我們重載的isFocused()這個函數. return true全部強制Focused.都有焦點了,就都能實現了

如果沒設置,焦點都第一個,第二個就無法實現。

這個是我寫的Demo:https://pan.baidu.com/s/1M1TghCh_R3kFnReM4li1VQ

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 網有很多相關內容,我在此做記錄和總結 1、主要是sql server 配置管理工具的配置 在此參考 https://www.cnblogs.com/yougmi/p/4616273.html(再次感謝!) (1)打開 sqlserver配置管理器 (2)三處配置,一處重啟: 一處配置: 二處配置: ...
  • 最近在跟著一個大佬學習Hadoop底層源碼及架構等知識點,覺得有必要記錄下來這個學習過程。想到了這個廢棄已久的blog賬號,決定重新開始更新。 主要分以下幾步來進行源碼學習: 一、搭建源碼閱讀環境二、源碼項目結構概覽及hdfs源碼包結構簡介三、NameNode介紹 第一步,搭建源碼閱讀環境。 把Ha ...
  • 根據網上安裝教程,簡單總結如下: 1.去mongodb官網下載電腦系統對應版本的軟體,比如我的是windows 64位的,就選擇64位的,可能下載下來之後文件夾上面顯示的是win32,這個不用理會; 2.把該目錄放到自己對應放軟體的盤下,我放在了d盤; 3.在mongodb文件夾目錄下新建data文 ...
  • 事務的基本特性: 事務有4個非常重要的特性 (ACID) Atomicity(原子性) 事務是一個不可分割的整體,所有操作要麼全做,要麼全不做;只要事務中有一個操作出錯,回滾到事務開始前的狀態的話,那麼之前已經執行的所有操作都是無效的,都應該回滾到開始前的狀態。 Consistency(一致性) 事 ...
  • 數據結構 redis是key-value的數據結構,每條數據都是一條字元串。註意:鍵的類型是字元串,並且不能重覆。 值的類型分5種: 字元串string 哈希hash 列表list 集合set 有序集合 數據操作行為 保存 修改 獲取 刪除 sting類型 字元串類型的redis中最為基礎的數據存儲 ...
  • 壁紙分為動態和靜態兩種: 如果只需要修改預設靜態壁紙,替換frameworks/base/core/res/res/drawable/default_wallpaper.jpg即可,或者在源碼中修改對應default_wallpaper地址.修改動態壁紙:在frameworks/base/core/ ...
  • 官方將通知單獨放在了UserNotifications.framework,使用時需要導入框架。UserNotifications.framework主要類文件: UNUserNotificationCenter的應用: 請求用戶授權: UNUserNotificationCenter* cente ...
  • AutoCompleteTextView MultiAutocompleteTextView 這兩個控制項長的很相似,功能也很相似。 AutoCompleteTextView 功能: 動態匹配輸入的內容,如百度搜索引擎當輸入文本時 可以根據內容顯示匹配的熱門信息。 獨特屬性 android:compl ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...