我有一个包含ListView项目的片段。此ListView位于ScrollView中。当我启动我的应用程序时,scrollview采用一个列表项的高度。如何将ScrollView扩展为全屏?
我的xml片段:
.remove-file .tooltip .tooltip-inner {background-color: black !important;}
列表项的Xml:
<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">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/lvData"
android:layout_width="match_parent"
android:layout_height="fill_parent">
</ListView>
</ScrollView>
</RelativeLayout>
截图
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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:layout_marginTop="10dp">
<TextView
android:layout_width="45dp"
android:layout_height="45dp"
android:id="@+id/tv_number"
android:layout_gravity="left|center_vertical"
android:background="@drawable/oval"
android:textAlignment="center"
android:textIsSelectable="false"
android:textStyle="normal|bold"
android:textSize="40sp"
android:layout_marginLeft="20dp"
android:text="@string/number"
android:textColor="#ffffff"
tools:targetApi="jelly_bean_mr1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lesson_name"
android:id="@+id/tv_lesson"
android:layout_gravity="center_horizontal|top"
android:textAlignment="center"
android:textStyle="normal|bold"
android:textSize="20sp"
tools:targetApi="jelly_bean_mr1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Время"
android:id="@+id/tv_time"
android:layout_gravity="center"
android:layout_marginTop="4dp"
android:layout_marginBottom="10dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/teacher_name"
android:id="@+id/tv_teacher"
android:layout_gravity="center_horizontal|bottom"
android:textStyle="italic" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Кабинет"
android:id="@+id/tv_cab"
android:layout_gravity="right|bottom"
android:layout_marginTop="4dp"
android:layout_marginBottom="17dp" />
</FrameLayout>
答案 0 :(得分:0)
在滚动视图中包含列表视图是个坏主意。 您不需要滚动视图,列表将自行滚动,也将适应屏幕大小,因此只需删除滚动布局,列表视图将填满屏幕 所以布局将是
$email = new CakeEmail();
$email->config('sparkpost');
$email->from(...)->to(...)->subject(...)->send();