方案一

用LinearLayout实现,代码如下:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:orientation="vertical" >        <ImageView            android:layout_width="match_parent"            android:layout_height="wrap_content"            android:contentDescription="@string/imagetip"            android:scaleType="fitXY"            android:src="@drawable/prizelist_ad" />        <ListView            android:layout_width="match_parent"            android:layout_height="0dp"            android:id="@+id/lv_prizelist"            android:layout_weight="1"             >        ListView>                        <include layout="@layout/footer_copyright" android:layout_height="wrap_content" android:layout_width="match_parent" />    LinearLayout>

重点 ListView的 android:layout_weight="1"

 

方案二

用RelativeLayout实现,代码如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent" >    <Button        android:id="@+id/button1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentBottom="true" // set your button at the bottom        android:layout_centerHorizontal="true"        android:text="Button" />    <ListView        android:id="@android:id/list"        android:layout_above="@+id/button1" // place listview above button        android:layout_width="match_parent"        android:layout_height="match_parent"        android:layout_alignParentTop="true"        >    ListView> RelativeLayout>

重点是 android:layout_alignParentBottom="true" 

转载于:https://www.cnblogs.com/duanweishi/p/4263398.html

更多相关文章

  1. 关于用Android的API重写drawRegion方法的代码
  2. Android 内核源代码交叉编译(创建自己的模拟器内核,哈哈终于搞定
  3. #Android源代码#android:onClick属性的底层调用
  4. Android Studio项目/Flutter 案例Gradle报错通用解决方案(包括Una
  5. 往Android Studio中import工程出错时的解决方案
  6. android stdio3.6中textcolor颜色代码大全(个人备份)

随机推荐

  1. RxJava操作符在android中的使用场景详解(
  2. Android(安卓)Toast 部分手机无法显示问
  3. Android(安卓)RemoteViews原理
  4. Android代码混淆proguard技…
  5. Android(安卓)Sensor框架简述(三)
  6. 和菜鸟一起学android4.0.3源码之SD卡U盘
  7. kotlin零基础入门(一) - kotlin的简单介绍
  8. Android文件储存
  9. restartPackage && sharedUserId="androi
  10. android4.4修改Recovery动画(包含恢复出厂