1

我正在尝试使用以下代码在对话框弹出窗口中执行 ScrollView:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="40dp" >

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="40sp"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/new_realm_avatar"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_centerHorizontal="true"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:id="@+id/new_realm_message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/new_realm_avatar"
            android:text="long text" />
    </RelativeLayout>
 </ScrollView>

</RelativeLayout>

因此,当我在消息部分中调用它并且文本大于屏幕时,它变得可滚动但隐藏了键并且它的高度与手机屏幕一样大。我希望对话框中的消息具有固定的高度,就像我尝试用另一个布局包装 ScrollView 并强制它的高度一样,但它也不起作用。所以有人有什么想法吗?

4

2 回答 2

3

尝试这个

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="40dp" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="40dp" >

        <ImageView
            android:id="@+id/new_realm_avatar"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:layout_centerHorizontal="true"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:id="@+id/new_realm_message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/new_realm_avatar"
            android:text="long text" />
    </RelativeLayout>
</ScrollView>

</RelativeLayout>
于 2013-09-24T12:26:38.627 回答
1

首先在你的孩子RelativeLayout替换这个:

android:layout_height="40sp"

android:layout_height="40dp"

因为sp用于字体大小

于 2013-09-24T12:21:38.157 回答