gpt4 book ai didi

安卓 : set position text in custom shape?

转载 作者:行者123 更新时间:2023-11-30 02:43:37 26 4
gpt4 key购买 nike

我有一个自定义的 Shape,我在这个 Shape 中添加了一些文本。但我无法更改此 shape 中文本的 position。我的应用程序是 chat mobile。

enter image description here

这是我的shape.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<solid android:color="#ffffff"/>

<stroke android:width="3dp"
android:color="#ff000000"/>

<padding android:left="1dp"
android:top="1dp"
android:right="1dp"
android:bottom="1dp"/>

<corners android:radius="30dp"/>
</shape>

这是我的 xml 但我以编程方式添加了我的 TextViews :

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

<ScrollView
android:id="@+id/scrollID"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1" >

<LinearLayout
android:id="@+id/test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >


</LinearLayout>
</ScrollView>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:baselineAligned="true"
android:orientation="horizontal"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:weightSum="1" >

<EditText
android:id="@+id/txtInpuConversation"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:hint="@string/edt_Conversation" >

<requestFocus />
</EditText>

<Button
android:id="@+id/btnSend"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="@string/btn_Conversation" />
</LinearLayout>

</LinearLayout>

我将 Shape 添加为:

txt.setBackgroundResource(R.drawable.testo);

最佳答案

你应该增加填充。

<padding android:left="1dp" <<<
android:top="1dp"
android:right="1dp"
android:bottom="1dp"/>

或者:

txtviewUser.setPadding(20, 0, 20, 0);

关于安卓 : set position text in custom shape?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25420653/

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