0

我是 monodevelop/monoandroid 的新手。我需要在 textview 中显示多行文本的代码我已经尝试过,但仍然无法正常工作。我认为应该有一些代码必须包含在 .cs 文件中,但我没有得到什么在那里使用。我也使用过 c# 代码,但它不起作用。我认为 ellipsize 是一个 android 属性,这就是它不起作用的原因。请给我一些解决方案。

<ScrollView
            android:id="@+id/scrollView2"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_margin="10dip"
            android:orientation="vertical"
            android:layout_gravity="center" >
            <RelativeLayout
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent"
                    android:orientation="vertical"
                    android:layout_marginTop="10dip">
                <TextView
                    android:id="@+id/tv_policy1"
                    android:layout_width="match_parent"
                    android:layout_height="fill_parent"
                    android:text="Terms of Service O-job Information Terms of Service O-job Information Terms of Service O-job Information Terms of Service O-job Information for Personal non-commercialaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaa aaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaa use only sdfjkj asdfjklfj sdfjkljdf sdfjkljflkj sdfskjfkl sdfjklsdjf sdfkljsdklfj sdfjhsdkfh"
                    android:textColor="#000000"
                    android:maxLines="3" 
                    android:singleLine="false" 
                    android:textSize="14dip" />
                    </RelativeLayout>
            </ScrollView>

我想显示 textview

请指教....提前谢谢!

4

1 回答 1

0

试试这种格式:

<ScrollView>

    <RelativeLayout>

          <TextView/>

          <TextView/>

    <RelativeLayout/>

<ScrollView/>

然后您可以使用RelativeLayout 中给出的对齐方法。

编辑:

说明你的问题是什么!编译时是否出现错误或文本显示不正确?更加详细一些。

另外,为什么在 TextView 中使用 :android:maxLines="3"android:singleLine="false"or之类的属性。android:layout_height="60dip"翻译这意味着:文本必须多于一行,但最多为 3 行。此外,它不能超过 60dip。

取决于非常严格的规则的文本。使用这些规则android:layout_width="match_parent" android:layout_height="wrap_content"确保文本可以正确显示,删除我之前在您的 TextView 中提到的属性。

于 2012-12-07T13:22:23.213 回答