在片段中有一个由swiperefresh布局包装的列表视图, 我想将其隐藏在屏幕右上角的边界之外 我不能使用抽屉布局,因为我不想选择项目 我的片段:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/refresh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:context="com.example.nick.music365.gui.fragments.ListFragment">
<ListView
android:id="@+id/list_view"
android:layout_width="@dimen/listview_width"
android:layout_height="match_parent"
android:layout_margin="2dp"
android:divider="@null"
android:dividerHeight="0dp" />