这是我的布局
<?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>
我希望每个文字都有这种效果:
但是如果我尝试添加更长的文字,我的文字就会被删除:
我看到很多人都有这个问题,但我找不到任何有用的东西。 如何解决这个问题?
答案 0 :(得分:1)
您的TextView width
为match_parent
,这意味着您的TextView
将与您的父width
具有相同的LinearLayout
。您的LinearLayout
宽度较窄,因此TextView
的宽度也会很窄。
编辑:您必须将TextView
视为与您父母的方向相同。如果他的方向相同,那么TextView的宽度会很窄。
答案 1 :(得分:0)
更改TextView的以下属性
android:layout_height="wrap_content"
到
android:layout_height="match_parent"
以便它延伸到完整的父高度。