我不知道如何移动智能手机屏幕顶部的列表项目。 我想在红色zariya栏下订购这些物品。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id = "@id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" ></ListView>
</LinearLayout>
答案 0 :(得分:-1)
Please do this way.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize"
android:clipToPadding="false"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"/>
答案 1 :(得分:-1)
或者您可以拖动工具栏下方的回收者视图。