我在scrollview中创建了一个列表视图,列表已经开始滚动但是listview下面的linearlayout没有出现在屏幕上。使用自定义适配器来填充列表。以下是我的代码,请任何人帮助我。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:fillViewport="true"
>
<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:background="#fff"
tools:context=".Crew">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp"
>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/crew_list"
android:layout_marginTop="20dp"
></ListView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="MESSAGE"
android:fontFamily="Myriad Pro"
android:textSize="15dp"
android:textColor="#d0d0d0"
android:padding="5dp"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:textSize="15dp"
android:padding="10dp"
android:text=""
android:gravity="top|left"
android:background="@drawable/textarealayout"
android:id="@+id/report_cabin_crew"
android:lines="3"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/greybox"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SEND SMS"
android:layout_marginLeft="5dp"
android:textColor="#0a3e8d"
/>
</LinearLayout>
<Button
android:layout_width="match_parent"
android:layout_marginTop="8dp"
android:layout_height="wrap_content"
android:text="SEND MESSAGE"
android:textColor="#fff"
android:textSize="18dp"
android:background="@drawable/buttonlayout"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
</ScrollView>
答案 0 :(得分:0)
您无法在彼此内部滚动布局。在组织您的布局时,您会意识到您可以实现相同的行为并使用其中一个进行查看。