我在每个按钮上使用true/false
时都使用了android:layout_height="0dp"
..但是如果字符串太长,大小仍会改变。
如何在使文本适合的情况下使按钮大小保持不变?
(这是一个测验应用程序,我在四个按钮上生成随机字符串,所以我使用了两个水平方向的线性布局)
android:layout_weight="1"
答案 0 :(得分:1)
我认为根据您的描述,您使用的是LinearLayout错误。对于水平方向,您需要将宽度设置为0dp。请看下面的代码。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="two"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="two"/>
</LinearLayout>
android:singleLine="true"
将上述内容添加到按钮字段中。它会省略你的文字,但它会强制执行一行......
你真的有几个选择:省略号,较小的字体大小,更精细控制的布局别名(http://developer.android.com/guide/topics/resources/providing-resources.html)
使用布局别名,您可以为不同大小/ dpi /方向/宽度/高度的屏幕指定不同的布局,因此指定适用的字体大小。