在我的Android应用程序中,我有一张投票照片的按钮。当用户选择此按钮时,此按钮上的文字变为“感谢您的投票”,当他看到之前投票的照片时,按钮上会显示“您已投票支持此照片”的文字......问题是这样的:http://i55.tinypic.com/t4z3vl.png
任何人都可以帮助我热,我可以在Button上插入文字吗?
欢迎任何想法。提前谢谢。
在xml中我有这个:
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_below="@id/imagetitle"
android:orientation="horizontal">
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Previous" android:id="@+id/previous" />
<Button android:layout_width="185dip" android:layout_height="wrap_content"
android:text="Vote for this picture" android:id="@+id/vote" />
<Button android:layout_width="wrap_content"
android:layout_height="wrap_content" android:text="Next" android:id="@+id/next" />
</LinearLayout>
答案 0 :(得分:6)
我认为您想要对齐所有按钮的顶部 在你的布局中添加这一行
LinearLayout android:baselineAligned="false"
答案 1 :(得分:3)
将"wrap_content"
用于layout_height
Button
属性
答案 2 :(得分:1)
嗨,看看这些http://developer.android.com/guide/practices/screens_support.html,如果每个屏幕都有不同的样式,它可以解决您的问题。 :D