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

溫馨提示×

溫馨提示×

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

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

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

修文县| 桂阳县| 华容县| 阿坝| 定襄县| 绥宁县| 临清市| 东明县| 北安市| 崇文区| 隆安县| 鄂伦春自治旗| 宝兴县| 安图县| 蒙自县| 鄂尔多斯市| 广宗县| 砀山县| 贡嘎县| 尚义县| 阿拉善左旗| 琼海市| 广南县| 玛多县| 高台县| 大方县| 开远市| 永靖县| 马关县| 乡城县| 社旗县| 常山县| 台安县| 山阳县| 仁化县| 桂东县| 金秀| 潞西市| 镇江市| 襄垣县| 德庆县|