试图在Button中放置几个​​textview

时间:2013-07-25 10:40:10

标签: android button textview imagebutton

我想我可能会做一些愚蠢的事情,但我找不到答案。显然,下面的东西不起作用,但我该怎么做呢?

<Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="+@id/date"
                android:text="+@id/heading"
                android:text="+@id/subheading"

                android:drawableLeft="+@id/featuredimage"
            />

我基本上是在制作文章按钮来代表博客文章。我尝试将文本视图放在里面,但它错误地列出了结束标记并引发了错误。

创建其中一个按钮的最佳方法是什么?

1 个答案:

答案 0 :(得分:5)

不要使用Button。

使用线性/相对布局,其属性为:

android:clickable="true"

在此布局中添加所有TextView或您想要的任何其他内容。