当前位置: 首页 > 知识库问答 >
问题:

为什么我的列表视图顶部有一个白色的空白处?

席嘉祯
2023-03-14

当我的应用程序运行时,我的自定义操作栏和列表视图之间有一个空白空白,我想删除它,但找不到任何类方法或xml设置来做到这一点。

下面是我使用列表视图的静态编程语言代码EngandFragment.kt

class EnglandFragment : Fragment() {

    // Access a Cloud Firestore instance from your Activity
    val db = FirebaseFirestore.getInstance()
    lateinit var adapter : ArrayAdapter<String>

    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        val root = inflater.inflate(R.layout.fragment_england, container, false)

        (requireActivity() as CountriesActivity).initializeCustomActionBar(R.drawable.england_flag, R.string.title_counties)
        var counties : ArrayList<String>

        val docRef = db.collection("UKSites").document("England")
        docRef.get()
            .addOnSuccessListener { document ->
                if (document != null) {
                    counties = document.get("Counties") as ArrayList<String>

                    adapter = ArrayAdapter(requireContext(), R.layout.list_item_view, counties)

                    groupListView.adapter = adapter

                    groupListView.setOnItemClickListener { parent, view, position, id ->

                        Toast.makeText(requireContext(), "Row selected: $position", Toast.LENGTH_SHORT ).show()

                    }

                } else {
                    Log.d("Debug", "No such document")
                }
            }
            .addOnFailureListener { exception ->
                Log.d("Debug", "get failed with ", exception)
            }

        return root
    }

}

下面是我列表视图的xml代码fragment_england.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ListView
        android:id="@+id/groupListView"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:headerDividersEnabled="false"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

下面是CountriesActivity.kt的静态编程语言代码:

class CountriesActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_countries)
        val navView: BottomNavigationView = findViewById(R.id.nav_view)
        navView.setItemIconTintList(null);

        val navController = findNavController(R.id.nav_host_fragment)
        // Passing each menu ID as a set of Ids because each
        // menu should be considered as top level destinations.
        val appBarConfiguration = AppBarConfiguration(
            setOf(
                R.id.navigation_england, R.id.navigation_scotland, R.id.navigation_wales, R.id.navigation_nireland
            )
        )
        setupActionBarWithNavController(navController, appBarConfiguration)
        navView.setupWithNavController(navController)


    }

    fun initializeCustomActionBar(imageViewResID: Int, textViewResID: Int) {

        val actionBar: ActionBar? = this.supportActionBar
        actionBar?.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM)
        actionBar?.setDisplayShowCustomEnabled(true)
        actionBar?.setCustomView(R.layout.custom_action_bar)
        val view : View? = actionBar?.customView
        var imageView : ImageView? = view?.findViewById(R.id.flagImageView)
        imageView?.setImageResource(imageViewResID)
        var textView : TextView? = view?.findViewById(R.id.countiesTextView)
        textView?.text = getString(textViewResID)
        actionBar?.setCustomView(view)

    }

}

下面是activity_countries.xml的xml代码:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?attr/actionBarSize">

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/nav_view"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="0dp"
        android:layout_marginEnd="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/bottom_nav_menu" />

    <fragment
        android:id="@+id/nav_host_fragment"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toTopOf="@id/nav_view"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:navGraph="@navigation/mobile_navigation" />

</androidx.constraintlayout.widget.ConstraintLayout>

共有2个答案

瞿兴朝
2023-03-14

可以使用布局检查器调试视图。要打开布局检查器,请执行以下操作:

  • 在连接的设备或模拟器上运行应用程序

更多信息:https://developer.android.com/studio/debug/layout-inspector

姬昀
2023-03-14

问题出在android:paddingTop=“?attr/actionBarSize”

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?attr/actionBarSize">

</androidx.constraintlayout.widget.ConstraintLayout>
 类似资料:
  • 我有一个,其中包含x2个容器视图,其中包含x2个不同的。我使用主视图顶部的在这两个表视图之间切换。它很好用。 在其中一个表视图上,我想深入显示另一个表视图。问题是,当我这样做的时候,它会在视图的顶部留下一个空白区域,该区域以前是这个区域(至少我认为这是造成空白的原因) 如何确保紧挨着导航栏? 选择一个线段将显示如下所示的视图。这很好。 但当我深入研究时,我发现: 我可以向上滚动,没问题,手动将图像

  • 当使用dialogFragment时,我在片段顶部得到一个空白矩形,而不知道为什么。 我的对话片段: select_frag.xml

  • 在中使用会在中创建一个奇怪的空白空间(如底部填充),导致不必要的滚动,因为没有更多的元素要显示。 这个填充随着而增长,我的意思是: 如果在中有0到2个元素,这非常适合屏幕,并且没有滚动。这里工作得很好。 如果在< code > recycle view 中有3到5个元素,这些元素会继续显示在屏幕上,但在这种情况下,会有更多的空白空间,从而导致不必要的滚动。 随着元素的增多,空白区域不断扩大,并创建

  • 我有一个下面的。奇怪的是,UITableView的上部是白色背景。tableView会很好地滚动到UITextField的下方,因此它被正确地放置在下方。只是上部不知何故变成了白色背景。这一部分似乎与的高度有关。也就是说,如果我增加文本字段的高度,白色部分也会增加。 我已尝试将调整滚动视图插入设置为false,但无效。

  • 问题内容: 我有一个像这样的形式的简单文本区域: 我在此文本 区域中 不断获得额外的空白。当我将其切换到它时,光标就像在 文本区域 的中间,而不是在开头?有什么解释? 问题答案: 仔细查看您的代码。其中已经有三个换行符,并且之前有大量空白。首先删除那些标签,以使标签之间不再出现换行符。它可能已经成功了。

  • 我能够从URL发送JSON响应,然后当我在RecyclerView上显示相同的响应时,得到的输出是空白的,但选项卡和导航抽屉仍然存在。运行该应用程序时也没有错误。我也在使用截击库。 问题:我在列出服务的RecylerView上没有得到任何输出。我会在这里贴出与RecyclerView相关的代码。另外,我已经在底部发布了堆栈跟踪。 serviceViewAdapter.java(适配器) fragm