gpt4 book ai didi

android - 隐藏在 ActionBar 后面的 Listview

转载 作者:行者123 更新时间:2023-11-29 19:03:50 26 4
gpt4 key购买 nike

我已尝试解决此问题,但我对 Xamarin.Android 开发还很陌生,我认为我在某个地方搞砸了

我的问题很简单,我的 ListView 从操作栏后面开始,如屏幕截图所示

enter image description here

我的代码如下,其中有一个 ListView

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:theme="@style/Theme.CustomListView">
<View
android:layout_width="match_parent"
android:layout_height="15dp"
android:background="#000" />
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/XMLlist1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:divider="#B7D3FA" />
</android.support.v4.widget.SwipeRefreshLayout>
</LinearLayout>

我试图在 ListView 的顶部添加一个像这样的 View 来留出空间,但它仍然不起作用

<View
android:layout_width="match_parent"
android:layout_height="0.1dp"
android:background="#000" />

有什么想法吗?

我的 Listview , Item 是下面的如果解释的话

<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"
android:background="#f2f2f2"
android:elevation="8dp"
android:layout_margin="10dp">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#fff"
android:layout_margin="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/webIcon"
android:layout_width="45px"
android:layout_height="45px"
android:src="@drawable/Icon"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/nameTextView"
android:layout_marginLeft="16dp"
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Fox News ."
android:textColor="@color/listsub1"
android:textSize="14dp"
android:layout_gravity="center" />
<TextView
android:id="@+id/time"
android:layout_weight="0.6"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="2 day ago"
android:textColor="@color/listsub1"
android:textSize="14dp"
android:layout_gravity="center" />
<ImageView
android:id="@+id/more"
android:visibility="invisible"
android:layout_width="15dp"
android:layout_height="22dp"
android:src="@drawable/more"
android:layout_gravity="center" />
</LinearLayout>
<LinearLayout
android:layout_marginTop="12dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<LinearLayout
android:layout_weight="1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginRight="5dp">
<TextView
android:id="@+id/departmentTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Android"
android:lines="3"
android:textSize="17dp"
android:textColor="@color/listtext"
android:lineSpacingExtra="3dp"
android:maxLines="3" />
<TextView
android:id="@+id/newssub"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Android"
android:layout_marginTop="13dp"
android:textSize="13dp"
android:textColor="@color/listsub1"
android:lineSpacingExtra="3dp" />
<TextView
android:id="@+id/intrest"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="You've shown interest in iPhone"
android:textSize="12dp"
android:textColor="@color/listsub2"
android:maxLines="1"
android:layout_marginTop="13dp" />
</LinearLayout>
<LinearLayout
android:layout_weight="2.2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/photoImageView"
android:layout_width="200px"
android:layout_height="200px"
android:src="@drawable/Icon"
android:scaleType="fitXY" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>

最佳答案

删除

android:theme="@style/Theme.CustomListView"

并删除

<View
android:layout_width="match_parent"
android:layout_height="15dp"
android:background="#000" />

编辑

使用 android:paddingTop="?android:attr/actionBarSize" 添加 actionBarSize 高度。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="?android:attr/actionBarSize">

关于android - 隐藏在 ActionBar 后面的 Listview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47934869/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com