按钮上有多行
列表项
我想创建一个包含一张图像和两行以上文本的按钮。 XML 中可以吗? (日食)
我正在尝试使用这段代码:
android:id="@+id/itm1"
android:text="item1"
android:typeface="sans"
android:textSize="20sp"
android:textColor="#ffffff"
android:width="250dip"
android:height="150dp"
android:drawableLeft="@drawable/image1"
android:background="@android:color/transparent"
android:layout_marginLeft="80dp"/>
List item
I want to create a button with one image and more than 2 lines of text. Is it possible in XML? (eclipse)
I`m trying with this code:
android:id="@+id/itm1"
android:text="item1"
android:typeface="sans"
android:textSize="20sp"
android:textColor="#ffffff"
android:width="250dip"
android:height="150dp"
android:drawableLeft="@drawable/image1"
android:background="@android:color/transparent"
android:layout_marginLeft="80dp"/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在按钮中插入多行,您可以使用 string.xml 来插入行尾。
1 在 res/values/strings.xml 中创建一个带有字符 endOfLine“\n”的新变量。
例如:
2 在布局文件中引用它。例如,对于一个按钮:
来源:http://www.jiahaoliuliu.com/2011 /10/android-multiple-lines-for-layout.html
To insert multiple lines in a button, you might use the string.xml to insert the end of line.
1 Create a new variable with the character endOfLine "\n" in the res/values/strings.xml.
For example:
2 Refer it in the layout file. For example, for a button:
Source: http://www.jiahaoliuliu.com/2011/10/android-multiple-lines-for-layout.html
虽然有点晚了,但您也可以在按钮本身中指定行数:
It is a little late, but you can also specify number of lines in the Button itself: