我有一个带有 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>