gpt4 book ai didi

android - 使用可编辑和不可编辑的提示/文本编辑文本 - Android

转载 作者:行者123 更新时间:2023-11-29 20:28:42 25 4
gpt4 key购买 nike

我看到 dasher messanger 使用编辑文本,部分区域可编辑,其他区域固定 - http://www.awesomescreenshot.com/04556wl302 .不确定我们如何绘制它?

最佳答案

整个东西不是编辑文本,而是布局。您可以按如下方式实现该效果。

enter image description here

<LinearLayout 
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/round_border">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="$"
android:padding="5dp"/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:hint="Enter your amount"
android:padding="5dp"/>
</LinearLayout>

@drawable/round_border is a drawable you should keep in drawable folder

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

<corners android:radius="5dp"/>
<solid android:color="@android:color/holo_orange_light"/>

</shape>

关于android - 使用可编辑和不可编辑的提示/文本编辑文本 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32282308/

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