标签:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:singleLine="true" android:text="很多安卓软件的顶部或者底部有一些跑马灯文字,这个只需要在TextView代码里添加一些属性即可" android:textSize="18sp" /> </LinearLayout>
在eclipse中常用的快捷键
Ctrl+Alt+↓ 复制当前行到下一行(复制增加)
Ctrl+Q 定位到最后编辑的地方
Ctrl+O 快速显示 OutLine
Ctrl+T 快速显示当前类的继承结构
Ctrl+K 参照选中的Word快速定位到下一个
Ctrl+Shift+K 参照选中的Word快速定位到上一个
Alt+Shift+L 抽取本地变量( 可以直接把一些魔法数字和字符串抽取成一个变量,尤其是多处调用的时候)
Java编辑器 格式化 Ctrl+Shift+F
标签:
原文地址:http://www.cnblogs.com/wangfengdange/p/5019948.html