在运行时连接布局

时间:2014-03-15 05:50:07

标签: android android-layout

我正在考虑创建一个高度远高于屏幕高度的布局。好吧,父布局是LinearLayout,它被设置为自动提供垂直滚动条。

在父布局中,有许多控件(listview,gridview,listboxes,editboxes等)。为了使设计更容易,我可以将listview放在一个xml中,gridview放在一个xml中,列表框放在一个,editbox放在一个等等,然后再用一些定义的函数连接并在父布局中分配它们吗?

如果无法做到这一点,我如何设计一个布局,其中分配了许多控件,设计屏幕在设计时无法适应?

1 个答案:

答案 0 :(得分:0)

xml_common.xml

代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/common_topheader_width"
    android:background="@drawable/topheaderfor9patch" >

    <ImageView
        android:id="@+id/xml_common_header_imageLogotop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="2dp"
        android:layout_marginRight="@dimen/common_left_right_margin"
        android:src="@drawable/qarrow" />
</RelativeLayout>

///////////////////////////////////////////

Main_view.xml

代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/mainbg"
    android:orientation="vertical" >

    <include layout="@layout/xml_common" />

</LinearLayout>

您可以根据您在常用视图的运行时中设置的选项设置不同的图像。