android TextView中怎么实现文字水平滚动 我这里是用RemoteViews加载布局的 textview标签中加入android:singleLine=\"true\"android:focusable=\"true\"android:ellipsize=。
TextView滚动如何实现 无焦点Animation ani=new TranslateAnimation(310f,-400f,0.0f,0.0f);ani.setDuration(10000);ani.setRepeatCount(500);ani.setRepeatMode(1);TextView textView=(TextView)this.findViewById(R.id.text);textView.startAnimation(ani);
android TextView中怎么实现文字水平滚动。