andorid 相关的软件列表

Andorid TextView字幕效果实例
首页

Andorid TextView字幕效果实例

2020-02-16 标签:andorid,textview,字幕,效果,实例,代码,实现,如下,public,class,textsubview,extends,private,textpaint,mpaint,context,attrs

一、效果图 二、代码 实现代码如下: public class TextSubView extends TextView { private TextPaint mPaint; public TextSubView(Context context, AttributeSet attrs) { sup

首页

android activity设置无标题实现全屏

2020-02-16 标签:android,activity,设置,无标题,实现,全屏,要用,andorid,view,window,feature,no,title,表示,flag,fullscreen,具体

Activity设置全屏和无标题栏,要用到andorid.view.Window和Android.view.WindowManager。 Window.FEATURE_NO_TITLE表示无标题栏。 WindowManager.LayoutParams.FLAG_FULLSCREEN表示全屏。 具体