如何停止跨越2行的按钮上的文本?

时间:2011-02-25 21:22:55

标签: android xml layout button android-sdk-2.1

我在水平线性布局中有5个按钮,最后一个按钮无法放在屏幕上,所以它分为两行,如:

Ita
lian

而不是Italian

无论如何我可以强制它不这样做吗?有没有动态的方式,在这种小型设备的情况下,它可能只能并排放置2个按钮,它可以将下一个按钮放到下一行?可能类似于以下内容:

English German 
Italian Spanish
French

这是我的main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent"
        >
    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/prompt"
            />
    <EditText
            android:id="@+id/inputText"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"/>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                  android:orientation="horizontal"
                  android:layout_width="fill_parent"
                  android:layout_height="fill_parent"
            >
        <Button
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/speakEnglish"
                android:onClick="speakEnglish"/>
        <Button
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/speakSpanish"
                android:onClick="speakSpanish"/>
        <Button
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/speakFrench"
                android:onClick="speakFrench"/>
        <Button
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/speakGerman"
                android:onClick="speakGerman"/>
        <Button
                android:layout_height="wrap_content"
                android:layout_width="wrap_content"
                android:text="@string/speakItalian"
                android:onClick="speakItalian"/>
    </LinearLayout>
</LinearLayout>

2 个答案:

答案 0 :(得分:2)

没试过,但尝试给它一个固定的高度singleLine="true"

答案 1 :(得分:2)

或试试这个android:maxLines =“1”