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

时间:2015-08-29 03:03:38

标签: android android-edittext

我看到dasher messanger使用编辑文本,其中一些区域可编辑,其他区域已修复 - http://www.awesomescreenshot.com/04556wl302。不确定我们如何绘制它?

1 个答案:

答案 0 :(得分:2)

整件事不是编辑文本,它是一种布局。你可以按如下方式实现这种效果。

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是一个drawable你应该保留在drawable文件夹

<?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>