Textview 未在 Phone.线性布局上显示完整文本

发布于 2024-11-15 20:01:06 字数 264 浏览 2 评论 0原文

我有线性布局。里面有文本视图。有时它包含大量信息。 在电脑上,如果使用模拟器运行应用程序,它可以正常工作,但在手机上,整个文本不会显示。 左侧文本消失了,无法删除,仅显示 1 行。 我认为文本换行不起作用。

     android:scrollHorizontally="true"

机器人:椭圆尺寸=“结束” android:ellipsize="marquee"

我厌倦了这个,但无法正常工作

,需要紧急帮助

i have linear layout.inside there is textview.which sometiomes contains large information.
on pc if run application with emulator it works fine but on phone whole text is not showing.
left sided text is gone,cant c it,n only 1 line it is showing.
i think text wrapping is not working.

     android:scrollHorizontally="true"

android:ellipsize="end"
android:ellipsize="marquee"

i tired this but not working

plz urgent help needed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

£噩梦荏苒 2024-11-22 20:01:06
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<EditText  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:id="@+id/Text1"
    />


</LinearLayout>

试试这个...

使用此代码时不需要滚动屏幕。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<EditText  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    android:id="@+id/Text1"
    />


</LinearLayout>

Try this...

You do not need to scroll your screen when using this code.

尴尬癌患者 2024-11-22 20:01:06

只需将 TextView 放入 ScollView 即:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white">
    <ScrollView android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical"> 
        <TextView android:id="@+id/about_detail"
            android:layout_height="fill_parent"
            android:layout_width="match_parent"
            android:padding="2dp"
            android:textSize="16dp"
            android:textColor="@android:color/black"
            android:background="@color/white"/>
    </ScrollView>     
</LinearLayout>

希望这有效\

Just put the TextView in ScollView ie:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white">
    <ScrollView android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical"> 
        <TextView android:id="@+id/about_detail"
            android:layout_height="fill_parent"
            android:layout_width="match_parent"
            android:padding="2dp"
            android:textSize="16dp"
            android:textColor="@android:color/black"
            android:background="@color/white"/>
    </ScrollView>     
</LinearLayout>

Hope this works\

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文