我使用的是ScrollView,但它不起作用。它没有回应。我想知道是否有人可以在我的xml文件中找到可疑的内容。
我确实有其他xml文件使用相同的Android工具,它们工作得很好。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="alias"
android:id="@+id/alias"
android:layout_marginTop="15dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="date_of_post"
android:id="@+id/date_of_post" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="comment"
android:id="@+id/comment"
android:layout_marginBottom="15dp" />
</LinearLayout>
</ScrollView>
答案 0 :(得分:0)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="alias"
android:id="@+id/alias"
android:layout_marginTop="15dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="date_of_post"
android:layout_below="@+id/alias"
android:id="@+id/date_of_post" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="comment"
android:id="@+id/comment"
android:layout_below="@+id/date_of_post"
android:layout_marginBottom="15dp" />
</RelativeLayout>
</ScrollView>