Android - 制作列表视图填充屏幕并列出项目以填充可用空间

时间:2015-02-11 03:58:59

标签: android android-layout android-listview baseadapter android-layout-weight

所以基本上我想要完成的是让我的屏幕填充一个列表视图,其中包含4个不可变项(菜单项)。为此,我创建了一个自定义适配器和一个包含使用此适配器的列表视图的活动。

基本上我想在屏幕上填充4个项目,因此每个项目应占据空间的25%(不包括操作栏的区域)。

我尝试了很多东西,但没有一个能奏效。我可以让每个项目都具有相同的大小(bah,easy)分配属性android:layout_weight="1"并使用android:layout_height="0dp"分配给每个listview项目。但是,listview使用的空间比屏幕更多。

所以这就是我的xml文件现在的样子:

item_menu.xml (列表视图项目)

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:layout_weight="1"
    tools:context="com.android.franzoni.atlas.views.CatalogActivity" >

<ImageView
    android:id="@+id/imgMenuIcon"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="15dp"
    android:layout_marginBottom="15dp"
    android:adjustViewBounds="true"
    android:src="@drawable/ic_menu_profile" />

<TextView
    android:id="@+id/txtMenuTitle"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:layout_marginLeft="30dp"
    android:layout_toRightOf="@+id/imgMenuIcon"
    android:text="Menu Title" />

</RelativeLayout>

activity_menu.xml (活动布局)

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="0dp"
    android:paddingLeft="0dp"
    android:paddingRight="0dp"
    android:paddingTop="0dp"
    tools:context="com.android.franzoni.atlas.views.MenuActivity" >
<ListView
    android:id="@+id/lvMenu"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
</ListView>

</LinearLayout>

你们有什么线索怎么做?有没有更简单的方法来进行菜单活动? (我考虑过listview,因为我要处理滑动和点击事件)

1 个答案:

答案 0 :(得分:0)

弄清楚现在最好的方法是以编程方式设置布局,调用方法获取显示大小,然后根据它设置布局高度。

// Get Screen Size
DisplayMetrics metrics = new DisplayMetrics ();
context.WindowManager.DefaultDisplay.GetMetrics (metrics);

// Set layout based on screen size and qty of items
ll.LayoutParameters.Height = (metrics.HeightPixels - topbarSize) / items.Count ;