8

我有一个列表视图,它将被填充,AsyncTask并且在应用程序的底部边缘我需要显示一个固定的覆盖布局,如下所示:

在此处输入图像描述

但我不知道如何在 xml 中做到这一点?这是我现在的 layout.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:orientation="vertical">

    <ListView
        android:id="@+id/list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

   <!-- Probably I need to do something here  -->

</LinearLayout>
4

2 回答 2

9

正如丹尼尔所建议的那样,使用 aRelativeLayout因为它允许堆叠组件(与FrameLayoutand相同SurfaceView)。以下代码将为您提供您正在寻找的布局:

<?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="match_parent" >

<ListView
    android:id="@+id/list"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<RelativeLayout
   android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@color/transparentBlack"
    android:layout_alignParentBottom="true" >

   <TextView
       android:id="@+id/textView2"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignBottom="@+id/textView1"
       android:layout_alignParentRight="true"
       android:layout_marginRight="20dp"
       android:text="Medium Text"
       android:textColor="@color/white"
       android:textAppearance="?android:attr/textAppearanceMedium" />

   <TextView
       android:id="@+id/textView1"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentLeft="true"
       android:layout_centerVertical="true"
       android:layout_marginLeft="40dp"
       android:text="Large Text"
       android:textAppearance="?android:attr/textAppearanceLarge"
       android:textColor="@color/white" />

   </RelativeLayout>

</RelativeLayout>

在上面的代码中,用于transparentBlackis#95000000whiteis的颜色十六进制值#ffffff

这是一个关于 android 中 UI 设计基础的优秀教程:Android 用户界面设计:布局基础

于 2013-07-27T20:02:16.180 回答
2

将父布局更改为RelativeLayoutorFrameLayout并将固定视图定位在同一级别ListView(但在 之后ListView

就像是:

---> RelativeLayout
    --> ListView
    --> Any view as the fixed view

然后,您可以将固定视图与包装的底部对齐RelativeLayout

<?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="match_parent">

   <ListView
       android:id="@+id/list"
       android:layout_width="match_parent"
       android:layout_height="wrap_content" />

   <!-- Here you should position the fixed view  -->
</RelativeLayout>
于 2013-07-27T19:57:21.713 回答