如何使列表视图填充可用的屏幕区域?

时间:2014-01-02 22:33:46

标签: android android-listview

我正在处理一个必须适合屏幕上的一个listview项目的应用程序。我怎样才能使它在屏幕上缩放并仅适合一个listview项目。我有一些代码,但屏幕上的导航按钮超过了一圈。我如何才能使列表视图不会超过一圈?

这是我的布局,id im_MainPic应该适合屏幕。

 <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="match_parent"
  tools:context=".MainActivity" >

<ImageView
    android:id="@+id/im_MainPic"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/ic_launcher" />




     </RelativeLayout>

1 个答案:

答案 0 :(得分:0)

在清单文件的活动部分中,输入:

android:theme="@android:style/Theme.NoTitleBar.Fullscreen"