亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android基于TextView不獲取焦點實現跑馬燈效果

發布時間:2020-09-17 20:03:17 來源:腳本之家 閱讀:221 作者:Jacob-wj 欄目:移動開發

本文實例講述了Android基于TextView不獲取焦點實現跑馬燈效果。分享給大家供大家參考,具體如下:

1. 寫一個類繼承TextView

package com.example.tt;
import android.content.Context;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.TextView;
public class ScrollingTextView extends TextView {
  public ScrollingTextView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
  }
  public ScrollingTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
  }
  public ScrollingTextView(Context context) {
    super(context);
  }
  @Override
  protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {
    if(focused)
      super.onFocusChanged(focused, direction, previouslyFocusedRect);
  }
  @Override
  public void onWindowFocusChanged(boolean focused) {
    if(focused)
      super.onWindowFocusChanged(focused);
  }
  @Override
  public boolean isFocused() {
    return true;
  }
}

2. xml 中增加屬性

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  >
<com.example.tt.ScrollingTextView
   android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginLeft="80dip"
    android:layout_marginBottom="25dip"
    android:textSize="25sp"
    android:singleLine="true"
    android:textColor="@android:color/black"
    android:ellipsize="marquee"
    android:focusable="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusableInTouchMode="true"
    android:scrollHorizontally="true"
    android:text="這才是真正的文字跑馬燈效果,文字移動速度,文字移動方向,文字移動的樣式,動畫等等……"
    android:background="#2FFFFFFF" />
<Button
  android:id="@+id/button1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="Button" />
</LinearLayout>

3. 在activity中聲明

package com.example.tt;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
public class MainActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
  }
}

更多關于Android相關內容感興趣的讀者可查看本站專題:《Android Service組件使用技巧總結》、《Android編程之activity操作技巧總結》、《Android資源操作技巧匯總》、《Android文件操作技巧匯總》、《Android操作SQLite數據庫技巧總結》、《Android操作json格式數據技巧總結》、《Android數據庫操作技巧總結》、《Android開發入門與進階教程》、《Android視圖View技巧總結》及《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

向AI問一下細節

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

AI

朝阳县| 武平县| 安顺市| 婺源县| 城固县| 赤水市| 新闻| 迁西县| 五峰| 中卫市| 钟山县| 绩溪县| 陕西省| 鹤岗市| 威信县| 赤城县| 淄博市| 林芝县| 永济市| 福安市| 三明市| 山阳县| 武邑县| 辽中县| 龙胜| 比如县| 宜川县| 鲁甸县| 舞钢市| 衡山县| 新河县| 广元市| 郎溪县| 万全县| 来宾市| 通化县| 佛坪县| 绍兴县| 阆中市| 吴忠市| 永清县|