Android查看自定义问题

时间:2011-06-10 00:08:41

标签: android android-layout android-ui

我正在尝试使用以下视图窗口小部件组织我的视图 -

  • TextView(应填充屏幕宽度并具有特定高度)
  • 使用Draw()绘制的自定义视图(填充宽度,应在上述textview之后开始并填充屏幕)

我正在尝试编写棋盘游戏,因此绘制了自定义视图。

我的问题是什么是最好的布局用于此?

我可以使用TableLayout并将这两个视图分别作为一列吗?我认为这样可以做到这一点,但是我用于自定义视图的布局只是没有填满屏幕,即使我正在绘制的桌面填充屏幕。

我希望我能够正确地解释自己。任何指针都非常感谢。

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/root_layout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent">

        <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/tl_question"
            android:layout_width="fill_parent" 
            android:layout_height="wrap_content" 
            android:shrinkColumns="1"
            android:stretchColumns="2">

            <TableRow>
                <TextView
                    android:id="@+id/question"
                    android:layout_width="wrap_content"
                    android:textSize="30sp"
                    android:textColor="#ffFFFFFF"   
                    android:layout_gravity="center_vertical"
                    android:paddingBottom="9dip"
                    android:layout_marginLeft="3dip"
                    android:layout_marginRight="2dip"/>
            </TableRow>

            <TableRow>
                <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:layout_gravity="center_vertical" >
                    <com.ac.gui.CustomView
                        android:id="@+id/custom_board"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"
                        android:keepScreenOn="true" />
                </LinearLayout>
            </TableRow>
        </TableLayout>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

尝试使用此

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root_layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">


            <TextView
                android:id="@+id/question"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textSize="30sp"
                android:text="ASDFASDF"
                android:textColor="#ffFFFFFF"   
                android:layout_gravity="center_vertical"
                android:paddingBottom="9dip"
                android:layout_marginLeft="3dip"
                android:layout_marginRight="2dip"/>

           <com.ac.gui.CustomView

            android:layout_below="@+id/question"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent" />

</RelativeLayout>

我测试了一个不同的布局代替你的,它工作正常。它也应该与你合作。

RelativeLayout允许您相对于彼此定位项目。 您将在自定义视图中注意到属性“layout_below”,其中我指定了要放置它的视图的ID。