gpt4 book ai didi

android - 我旋转的 TextView 被截断了。我必须做什么?

转载 作者:行者123 更新时间:2023-11-29 01:27:08 25 4
gpt4 key购买 nike

这是我的布局

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


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<!--left-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_weight="1"
android:background="@color/nero"
android:orientation="vertical">

<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="Nothing important"
android:textSize="40dp"/>


</LinearLayout>



<!--right yellow column-->
<LinearLayout
android:id="@+id/layout_barra_nord"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="6"
android:background="@color/giallo"
android:orientation="vertical">

<TextView
android:paddingTop="20dp"
android:background="@android:color/background_light"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:rotation="90"
android:singleLine="true"
android:gravity="center"
android:layout_gravity="bottom"
android:textColor="@color/nero"
android:textSize="30sp"
android:textStyle="bold"
android:text="try"
/>
<!--android:text="long text"-->


</LinearLayout>

</LinearLayout>

</LinearLayout>

我想对每个文本都有这种效果:

the effect that always I want

但如果我尝试添加更长的文本,我的文本将被截断:

cut effect

我看到很多人都有这个问题,但我没有找到任何有用的东西。如何解决这个问题?

最佳答案

您的 TextView 宽度match_parent 这意味着您的 TextView 将与您的父级 具有相同的 width >线性布局。您的 LinearLayout 宽度较窄,因此您的 TextView 宽度也会较窄。

编辑:您必须将您的 TextView 视为他在与您的 parent 相同的方向。如果他有相同的方向,您将拥有宽度较窄的 TextView。

关于android - 我旋转的 TextView 被截断了。我必须做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33370678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com