Textview中的文本剪辑

时间:2018-07-11 10:43:18

标签: android android-layout textview android-cardview

我在textview中添加了Text,但是它在开始时会被剪切,并且我尝试添加填充,边距开始和textalignment center或end。

screenshot of textview with text clipping at the starting edge

XML代码

<LinearLayout 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:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#eb2f06"
android:gravity="center"
android:orientation="vertical"
tools:context=".MainActivity">

<android.support.v7.widget.CardView
    android:id="@+id/c1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="@dimen/dim_2"
    android:visibility="invisible"
    app:cardBackgroundColor="#ffeb3b"
    app:cardCornerRadius="@dimen/dim_7"
    app:cardElevation="@dimen/dim_5"
    app:cardUseCompatPadding="true">


    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:orientation="vertical"
            android:padding="@dimen/dim_5">


            <TextView
                android:id="@+id/txtquote"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_margin="@dimen/dim_4"
                android:fontFamily="@font/dancingbold"
                android:padding="@dimen/dim_10"
                android:textColor="#000000"
                android:textSize="35sp" />

            <TextView
                android:id="@+id/txtauthor"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginEnd="@dimen/dim_3"
                android:layout_marginTop="@dimen/dim_3"
                android:fontFamily="@font/dancingbold"
                android:gravity="end"
                android:padding="@dimen/dim_5"
                android:textColor="#000000"
                android:textSize="30sp" />


         </LinearLayout>
    </ScrollView>
 </android.support.v7.widget.CardView>

使用Java设置内容 Java代码

    txtquote.setText("\"" + arrquote.get(count).quote + "\"");
    txtauthor.setText("~" + arrquote.get(count).author);
  

我尝试使用头发空间和\ u0020

首先,我认为这是因为我的手机屏幕较小,但是当我在许多不同屏幕尺寸的手机中尝试此操作时,它仍然存在相同的问题

3 个答案:

答案 0 :(得分:0)

尝试添加

android:clipToPadding="false"
android:clipChildren="false"

转到TextViews的父级布局。

答案 1 :(得分:0)

尝试使用此视图而不是滚动视图,它将添加一些空间,并且我认为它不会剪切您的文本。

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dp">

答案 2 :(得分:0)

这是关于字体属性(斜体)以及android如何测量/处理它们的信息。使用该字体afaik,您将无法摆脱剪切。