我在为虚拟文本创建视图时,正在寻找一种在eclipse中生成Lorem ipsum
的方法。例如,在Visual Studio中,只需键入lorem
并按Tab键即可完成
在eclipse中有没有做到这一点?任何想法?
答案 0 :(得分:7)
我没有遇到过实际生成虚拟文本的Eclipse功能,但是我强烈推荐这种解决方法(说实话,我认为你不需要每次都有不同的虚拟文本。)
创建一个Eclipe模板。这是一个xml
文件,如下所示:
<templates>
<template autoinsert="true" context="java" deleted="false" description="Dummy text" enabled="true" name="Lorem Ipsum">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</template>
</templates>
转到 Java - &gt;编辑 - &gt;模板并导入上述文件。
现在,当您编写代码并键入lore
(表示上面模板标记的名称属性值)时,点击 CTRL + SPACE ,然后它会自动插入lorem ipsum文本。
更多提示:
+
符号添加到ispum文本中,以便在插入时分解长字符串
false
。然后,您可以在提案中查看ipsum说明
aaa_LoremIpsum
。然后,在Eclipse中,键入aaa
并按 CTRL + SPACE 。这样您可以添加许多以aaa
开头的模板,并在Eclipse中选择您喜欢的任何模板。
我自己有用于分离类中方法的模板。 (例如aaa_1.StaticFields
,aaa_2.InstanceFields
,aaa_3.Constructors
等。)
答案 1 :(得分:7)
在Android Studio中,您可以使用以下内容预览lorem ipsum TextViews
tools:text="@tools:sample/lorem/random"
您还可以将此用于名称,城市,邮政编码,头像等。
请参阅https://developer.android.com/studio/write/tool-attributes.html#toolssample_resources
答案 2 :(得分:1)
他们可以提供帮助。
tools:text="@tools:sample/cities"
tools:text="@tools:sample/backgrounds/scenic"
tools:text= "@tools:sample/avatars"
tools:text="@tools:sample/full_names"
tools:text=”@tools:sample/lorem"
tools:text=”@tools:sample/lorem/random"