gpt4 book ai didi

安卓 : Align a text at left and center the textview in his parents view

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:01:10 25 4
gpt4 key购买 nike

你好,我遇到了一个小问题

我正在使用 GRAVITY LEFT 使我的文本成为 View 左侧的对齐方式,但我想在 TextView 中居中,但也想在左侧部分对齐

这是我现在拥有的:

            ___________________________________
_ _ _ _ _ _| aaaaaaaaaaaaa |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaa |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaaaaaaaa |_ _ _ _ _ _
-----------------------------------

我想要的是:

            ___________________________________
_ _ _ _ _ _| aaaaaaaaaaa |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaa |_ _ _ _ _ _
_ _ _ _ _ _| aaaaaaaaaaaaaa |_ _ _ _ _ _
-----------------------------------

地点:

_ _ _ _ = 在 TextView 之外

| = TextView 边缘

我试过 android:gravity = "left|center"但它不起作用,知道吗?

谢谢

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/image_button_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_centerVertical="true">

<ImageView
android:id="@+id/left_button_image"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="@dimen/spacing_normal"/>

<Textview
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/left_button_image"
android:gravity = "center|left|left"
android:clickable="false"
android:focusable="false"
app:font_name="Roboto-Light.ttf"/>

我有什么(文本左对齐但不居中)enter image description here

我想要的(文本左对齐和居中对齐)(我手动添加填充以获得渲染但它很脏并且不会适应所有文本):enter image description here

最佳答案

只需给 Textview parent 作为:

android:gravity = "center"

只需将 Textview 设置为:

android:gravity = "center_vertical|left|start"
android:layout_margin="20dp"

关于安卓 : Align a text at left and center the textview in his parents view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38139173/

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