我正在尝试使用以下视图窗口小部件组织我的视图 -
我正在尝试编写棋盘游戏,因此绘制了自定义视图。
我的问题是什么是最好的布局用于此?
我可以使用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>
答案 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。