<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="info.androidhive.materialtabs.fragments.OneFragment">
<ListView
android:id="@+id/olaylar_liste"
android:layout_width="match_parent"
android:layout_height="wrap_content"></ListView>
</LinearLayout>
最后一项未显示。请帮忙。
答案 0 :(得分:35)
将此行添加到您的Viewpager
android:layout_marginBottom="?attr/actionBarSize"
因为您在底部没有的尺寸正是您ToolBar
所采用的尺寸,
当你到达底部
时应该隐藏(using new Android Design)
<android.support.v4.view.ViewPager
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="?attr/actionBarSize"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
答案 1 :(得分:1)
如您所见,您的设备比ListView
的内容略小。
将至少paddingBottom
值的20dp
添加到您的olaylar_liste ListView
。
如果以前不起作用,请尝试添加marginBottom="20dp"
。
尝试实施ScrollView
,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="info.androidhive.materialtabs.fragments.OneFragment">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="20dp"> //THIS GUY would be useful
<ListView
android:id="@+id/olaylar_liste"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</ScrollView>
</LinearLayout>
另请阅读:Working with the ScrollView
希望有所帮助
答案 2 :(得分:0)
试试这个。
<ListView
android:id="@+id/lv_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/bg_listview"
android:dividerHeight="1dp">
答案 3 :(得分:0)
添加此MainActivity:
@Override
protected void onResume() {
super.onResume();
View decorView = getWindow().getDecorView();
decorView.setSystemUiVisibility( View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
);
}
答案 4 :(得分:0)
将android:paddingBottom添加到ViewFlipper它对我有用。
<ViewFlipper
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment_workorder_list_viewFlipper"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:paddingBottom="?attr/actionBarSize">
答案 5 :(得分:0)
我正在使用de.codecrafters的tableview:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.vlad.zimmer.porProgramar$PlaceholderFragment">
<de.codecrafters.tableview.TableView
android:id="@+id/tableView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="?attr/actionBarSize"
/>
</RelativeLayout>
添加这一行,对我来说就像一个魅力:
机器人:?layout_marginBottom =&#34; ATTR / actionBarSize&#34;
答案 6 :(得分:0)
使用此
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content">
</ListView>
</FrameLayout>
答案 7 :(得分:0)
将android:layout_height =“ 0dp”添加到我的ListView中,并将android:layout_height =“ wrap_content”添加到我的ListView的父ViewGroup中解决了该问题
答案 8 :(得分:-1)
您必须设置 列表视图或recyclerview中的android:paddingBottom =“”。