1

我有一个带有 4 个按钮的布局(我试图获得相同的大小)。问题是我不希望我的第一个按钮上的文本被省略。我尝试了很多事情:将 ellipsize 属性设置为“none”,将 singleLine 属性设置为 false,切断填充,它们都不起作用。

在 Eclipse 图形布局中一切看起来都很好,但是当我在真实设备上尝试时,无论屏幕有多大,都会出现上述问题。起初,我认为这是因为填充(我在 .xml 中为按钮定义了自定义背景,并在该形状上使用了填充)。但是,删除它们不起作用。

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:gravity="center"
    android:background="@drawable/gradient_bkg"
    tools:context=".StartActivity" >

    <TableLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

    <TableRow android:layout_weight="1.0">
   <LinearLayout 
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginBottom="15dp"
       android:gravity="center">

        <Button
            android:id="@+id/random_words"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginRight="15dp"
            android:layout_weight="1.0"
            android:background="@drawable/button_sexy"
            android:text="Random two words"
            android:drawableLeft="@drawable/drinks"/>

        <Button
            android:id="@+id/no_data"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginLeft="15dp"
            android:layout_weight="1.0"
            android:background="@drawable/button_sexy"
            android:text="No data"
            android:drawableLeft="@drawable/body_data" />

   </LinearLayout></TableRow>

    <TableRow android:layout_weight="1">
   <LinearLayout
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_marginTop="15dp"
       android:gravity="center" >

       <Button
           android:id="@+id/result"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:layout_marginRight="15dp"
           android:layout_weight="1"
           android:background="@drawable/button_sexy"
           android:text="Result"
           android:drawableLeft="@drawable/results" />

       <Button
           android:id="@+id/reset"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:layout_marginLeft="15dp"
           android:layout_weight="1"
           android:background="@drawable/button_sexy"
           android:text="Reset"
           android:drawableLeft="@drawable/reset"/>
   </LinearLayout>
   </TableRow>
   </TableLayout>

</RelativeLayout>
4

2 回答 2

1

你的代码很棒而且很完美。您指出的问题只会发生在较低的 API 上,因为您在清单中添加了 Theme.Holo,这对于较旧的 API 来说很奇怪。

最简单的解决方案,因为无论如何您都在使用自定义 LAF,所以:在清单中将 Theme.Holo 替换为 Theme.Black。

于 2013-08-17T13:39:55.133 回答
-1

我认为问题与 wrap_content 在布局的许多级别上的使用有关。我已经看到这会导致个别项目有时变得聪明,并且自动调整不正确或至少以意想不到的方式。尝试将按钮放在顶层布局上,以测试在使用 match_parent 时是否可以获得正确的行为。

但最后,使用 wrap_content 和 match_parent 的组合会消耗大量时间。快速前进的方法可能是将按钮设置为固定大小,但请确保将它们设置得比您认为的要大一些,以确保它可以在许多不同的屏幕尺寸上工作。

于 2013-08-16T08:20:38.900 回答