Android - 使列表视图填充屏幕和要填充的列表项可用 space
Android - Make listview fill screen and list items to fill available space
所以基本上我想要完成的是让我的屏幕充满一个列表视图,其中正好有 4 个不可变项(菜单项)。为此,我创建了一个自定义适配器和一个 activity,其中包含一个使用此适配器的列表视图。
基本上我想要有 4 个项目填满屏幕,所以每个项目应该占据 space 的 25%(不包括操作栏的区域)。
我尝试了多种方法,但 none 成功了。我可以让每个项目都具有相同的大小(呸,简单)分配 属性 android:layout_weight="1"
并使用 android:layout_height="0dp"
到每个列表视图项目。但是,列表视图使用的 space 比屏幕多。
所以这是我的 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(Activity的布局)
<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>
你们知道怎么做吗?有没有更简单的方法来制作菜单 activity? (我想到了listview,因为我要处理滑动和点击事件)
弄清楚目前最好的方法是以编程方式设置布局,调用一个方法来获取显示尺寸,然后根据它设置布局高度。
// 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 ;
所以基本上我想要完成的是让我的屏幕充满一个列表视图,其中正好有 4 个不可变项(菜单项)。为此,我创建了一个自定义适配器和一个 activity,其中包含一个使用此适配器的列表视图。
基本上我想要有 4 个项目填满屏幕,所以每个项目应该占据 space 的 25%(不包括操作栏的区域)。
我尝试了多种方法,但 none 成功了。我可以让每个项目都具有相同的大小(呸,简单)分配 属性 android:layout_weight="1"
并使用 android:layout_height="0dp"
到每个列表视图项目。但是,列表视图使用的 space 比屏幕多。
所以这是我的 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(Activity的布局)
<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>
你们知道怎么做吗?有没有更简单的方法来制作菜单 activity? (我想到了listview,因为我要处理滑动和点击事件)
弄清楚目前最好的方法是以编程方式设置布局,调用一个方法来获取显示尺寸,然后根据它设置布局高度。
// 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 ;