我已经使用ScrollView> RelativeLayout>(子级:线性布局)创建了一个简单的活动。 我添加了约20个按钮以使UI可以滚动(仅用于测试),但它位于手机中。滚动不流畅。 这是代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="10"
tools:context=".MainActivity"
android:background="@drawable/manbackground"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="5dp">
<ImageView
android:id="@+id/user_dp"
android:layout_alignParentRight="true"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/user"
android:contentDescription="TODO"></ImageView>
<ImageView
android:id="@+id/menu_opener"
android:layout_width="25dp"
android:layout_height="25dp"
android:src="@drawable/menu"
android:layout_alignParentLeft="true"
></ImageView>
<TextView
android:id="@+id/app_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/menu_opener"
android:text="Cool App"
android:textSize="25dp"
android:layout_marginLeft="10dp"
android:textColor="#FFF"
></TextView>
<ImageView
android:id="@+id/notification_bell"
android:layout_width="25dp"
android:layout_height="25dp"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/user_dp"
android:src="@drawable/bell"></ImageView>
<TextView
android:id="@+id/notification_num"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/notification_bell"
android:text="10"
android:textSize="15dp"
android:textColor="#FFF"
android:layout_marginLeft="-20dp"
android:layout_marginTop="-5dp"
></TextView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginTop="100dp"
>
<Button
android:id="@+id/button17"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />
<!---- I repeated this button 20 times to make the scrollview working --->
</LinearLayout>
</RelativeLayout>
</ScrollView>
但是当我在Android Mobile上运行该应用程序时,滚动并不流畅,而且运行缓慢。