導航:首頁 > 操作系統 > android跑馬燈時間

android跑馬燈時間

發布時間:2023-06-15 14:40:14

『壹』 android怎樣實現跑馬燈效果

Android自帶的跑馬燈效果不太好控制,不能控制速度,不能即時停止和啟動,而且還受焦點的影響蛋疼不已。由於項目需求需要用的可控制性高的跑馬燈效果,所以自己寫了一個自定義的TextView

android:ellipsize="marquee" android:singleLine="true" 這兩個屬性也要加上

public class MarqueeText extends TextView implements Runnable {

private int currentScrollX;// 當前滾動的位置

private boolean isStop = false;

private int textWidth;

private boolean isMeasure = false;

public MarqueeText(Context context) {

super(context);

// TODO Auto-generated constructor stub

}

public MarqueeText(Context context, AttributeSet attrs) {

super(context, attrs);

}

public MarqueeText(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

}

@Override

protected void onDraw(Canvas canvas) {

// TODO Auto-generated method stub

super.onDraw(canvas);

if (!isMeasure) {// 文字寬度只需獲取一次就可以了

getTextWidth();

isMeasure = true;

}

}

/**

* 獲取文字寬度

*/

private void getTextWidth() {

Paint paint = this.getPaint();

String str = this.getText().toString();

textWidth = (int) paint.measureText(str);

}

@Override

public void run() {

currentScrollX -= 2;// 滾動速度

scrollTo(currentScrollX, 0);

if (isStop) {

return;

}

if (getScrollX() <= -(this.getWidth())) {

scrollTo(textWidth, 0);

currentScrollX = textWidth;

// return;

}

postDelayed(this, 5);

}

// 開始滾動

public void startScroll() {

isStop = false;

this.removeCallbacks(this);

post(this);

}

// 停止滾動

public void stopScroll() {

isStop = true;

}

// 從頭開始滾動

public void startFor0() {

currentScrollX = 0;

startScroll();

}

}布局文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<Button

android:id="@+id/start"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:onClick="start"

android:text="走起" />

<Button android:id="@+id/stop" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="stop" android:text="停止" /> <Button android:id="@+id/startfor0" android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="startFor0" android:text="從頭開始" /> <simtice.demo.marqueetext.MarqueeText android:id="@+id/test" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#339320" android:ellipsize="marquee" android:singleLine="true" android:text="這才是真正的文字跑馬燈效果這才是真正的字跑馬燈效果這才是真正的" android:textColor="#000000" android:textSize="20dp" > </simtice.demo.marqueetext.MarqueeText></LinearLayout>MainActivitypublic class MainActivity extends Activity { private MarqueeText test; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); test = (MarqueeText) this.findViewById(R.id.test); } public void start(View v) { test.startScroll(); } public void stop(View v) { test.stopScroll(); } public void startFor0(View v){ test.startFor0(); }}

『貳』 android 跑馬燈怎麼弄

使用textswitcher空間設置setfadein和setfadeout,這兩個方法分別設置當前文字消失和下一段文字出現的動畫效果 查看原帖>>

希望採納

『叄』 Android實現跑馬燈效果

跑馬燈相關屬性

上面方式1能暫時實現跑馬燈效果,但在多次點擊事件之後容易失焦。而且在Android4.4上實現有短暫停頓。

MarqueeTextView

MarqueeTextView

attrs.xml

使用

MarqueeView :可垂直跑、可水平跑的跑馬燈。

MarqueeViewLibrary :一個很方便使用和擴展的跑馬燈Library,通過提供不同的MarqueeFactory來定製不同的跑馬燈View, 並且提供了常用類型的跑馬燈效果:SimpleMarqueeView。

XML

設置字元串列表數據,或者設置自定義的Model數據類型

設置字元串數據

設置事件監聽

在 Activity 或 Fragment 中

在 ListView 或 RecyclerView 的 Adapter 中

『肆』 android 文字跑馬燈效果怎樣控制滾動速度啊,效果有了 就是想讓他滾動更快一點

讓動畫時間變短就可以了

閱讀全文

與android跑馬燈時間相關的資料

熱點內容
微信加密如何設置方法 瀏覽:959
改解壓格式 瀏覽:268
仿社交app源碼 瀏覽:289
解壓粘液模擬器英文版 瀏覽:671
看高鐵票多少錢用什麼app看 瀏覽:884
java介面返回值 瀏覽:89
奇跡文學APP為什麼不能用了 瀏覽:1000
怎麼用電腦玩手機版的我的世界伺服器 瀏覽:230
linux設備許可權 瀏覽:950
pdf轉曲軟體 瀏覽:149
雲伺服器怎麼做nas 瀏覽:457
有什麼可以提示快遞的app 瀏覽:311
什麼app的主題都是免費的 瀏覽:1002
se01加密路線和普通路線放 瀏覽:908
怎麼用安卓系統手機測量長度 瀏覽:46
回調突破主圖源碼 瀏覽:238
mc生存都市伺服器地址大全 瀏覽:92
unix網路編程環境搭建 瀏覽:963
pythonsocket高並發 瀏覽:257
python開發windowsgui 瀏覽:619