我为Activity
编写了下面的布局,只是一个标题和4个2x2格式的按钮:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/layout_main"
android:gravity="center"
android:background="@drawable/bgr_main">
<TableRow android:gravity="center_horizontal" >
<ImageView
android:id="@+id/img_qtitle"
android:contentDescription="@string/qtitle_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/app_title" />
</TableRow>
<TableRow android:gravity="center_horizontal" >
<Button
android:id="@+id/button_showlist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip"
android:background="@drawable/button_list"
android:onClick="showList" />
<Button
android:id="@+id/button_playrandom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip"
android:background="@drawable/button_play"
android:onClick="playRandom" />
</TableRow>
<TableRow android:gravity="center_horizontal" >
<Button
android:id="@+id/button_playfav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip"
android:background="@drawable/button_fav"
android:onClick="playLastFav" />
<Button
android:id="@+id/button_showmore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dip"
android:background="@drawable/button_more"
android:onClick="showMore" />
</TableRow>
</TableLayout >
标题图像不像行的几个按钮(加填充)那么宽。我的问题是每行中的第一个按钮图像是水平拉伸的。规范化非对称表的方法是什么?
v.2
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/layout_main"
android:gravity="center"
android:background="@drawable/bgr_main">
<TableRow android:gravity="center_horizontal" >
<ImageView
android:id="@+id/img_qtitle"
android:contentDescription="@string/qtitle_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/quieto_title" />
</TableRow>
<TableRow android:gravity="center_horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button_showlist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_margin="5dip"
android:background="@drawable/button_list"
android:onClick="showList" />
<Button
android:id="@+id/button_playrandom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_margin="5dip"
android:background="@drawable/button_play"
android:onClick="playRandom" />
</LinearLayout>
</TableRow>
<TableRow android:gravity="center_horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button_playfav"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:layout_gravity="left"
android:background="@drawable/button_fav"
android:onClick="playLastFav" />
<Button
android:id="@+id/button_showmore"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_margin="5dip"
android:background="@drawable/button_more"
android:onClick="showMore" />
</LinearLayout>
</TableRow>
</TableLayout >
那工作! Eclipse说:“这个LinearLayout布局或它的TableRow父版本是无用的”,但对我来说没关系。我不会告诉客户!
答案 0 :(得分:2)
您所看到的内容的屏幕截图会有所帮助。
ImageView未填满整个表格
在tablelayout属性中,尝试指定android:stretchColumns="*"
,这将允许列拉伸以填充表格。我相信如果允许所有列都伸展(如*表示),那么它们会拉伸,因此它们是均匀的(占用相同的空间)。
按钮被拉伸
您指定了layout_width="wrap_content"
通常可以达到您想要的效果,但在表格布局的情况下,您无法指定宽度。这是来自TableRow的android文档:
The children of a TableRow do not need to specify the layout_width and layout_height attributes in the XML file. TableRow always enforces those values to be respectively MATCH_PARENT and WRAP_CONTENT.
所以你需要在Table Row中放入另一个容器,将你的按钮放在那个容器中并设置你的按钮以包装&amp;对齐中间。这样的事情应该有效:
<TableRow ...>
<!-- Create a container -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Place button inside Container -->
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
<!-- Place button in the middle of the container -->
android:layout_gravity="center"
.../>
</LinearLayout>
</TableRow>