android studio响应表

时间:2014-07-22 10:08:13

标签: android android-layout android-tablelayout

我的android studio应用程序中有一张表。问题是没有响应。如何将其转换为响应式布局?

<?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:stretchColumns="1"
    android:background="@drawable/white">

    <TableRow>
        <TextView
            android:layout_column="1"
            android:textColor="#000000"
            android:text="Table"
            android:padding="3dip"/>
        <TextView
            android:text="SERIA NR. 11691428"
            android:textColor="#000000"
            android:padding="3dip"/>
    </TableRow>
</TableLayout>

2 个答案:

答案 0 :(得分:0)

尝试阅读此链接。 它包含有关UI设计的材料。

http://www.smashingmagazine.com/2012/07/26/android-design-tips/

还有一件事, 如果Android Native不是您的严格要求。 您可以使用&#34; Sencha Framework&#34; 。它具有出色的后端和UI功能。

答案 1 :(得分:0)

您必须根据各种屏幕的尺寸创建不同的布局。 所以在你的/ res文件夹中,你将有/layout/main.xml(默认大小),还有/layout-small/main.xml /layout-large/main.xml

等等。显然,在每个main.xml中,您必须设置正确的尺寸和边距。