亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android筆記:TextView和編輯框中添加圖片,ImageSpan,SpannableStringBuilder用法

發布時間:2020-06-07 14:51:55 來源:網絡 閱讀:2545 作者:glblong 欄目:移動開發

在TextView或者編輯框EditText中添加圖片的方法,代碼如下:

import java.util.regex.Matcher;
import java.util.regex.Pattern;

import android.os.Bundle;
import android.app.Activity;
import android.text.Spannable;
import android.text.SpannableStringBuilder;
import android.text.style.ImageSpan;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity
{
    
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        TextView tv = (TextView) findViewById(R.id.tv);
        String str = "sdfasd★fasljeojg★fad falsdkjf★asjdkf alsdj★foawpjf sajfadsjf ladjfa ls";
        
        SpannableStringBuilder builder = new SpannableStringBuilder(str); 
        String flag = "★";
        Pattern pattern = Pattern.compile(flag);
        Matcher matcher = pattern.matcher(str);
        while (matcher.find())
        {
            builder.setSpan(new ImageSpan(this, R.drawable.ic_launcher), matcher.start(), matcher.end(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            
        }
        tv.setText(builder);
        
        
        EditText ed = (EditText) findViewById(R.id.editText1);
        ed.setText(builder);
        
    }
}



布局文件代碼如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/tv"
        android:layout_marginTop="63dp"
        android:ems="10" >

        <requestFocus />
    </EditText>

</RelativeLayout>



效果圖:

Android筆記:TextView和編輯框中添加圖片,ImageSpan,SpannableStringBuilder用法





































向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汝城县| 什邡市| 金门县| 肇源县| 化州市| 钦州市| 宁化县| 嘉祥县| 江都市| 大兴区| 中宁县| 南澳县| 马鞍山市| 开封市| 长宁区| 海门市| 衡东县| 泉州市| 东莞市| 永登县| 黄平县| 山西省| 鹰潭市| 泸定县| 西贡区| 诸暨市| 九江市| 濮阳市| 仲巴县| 大连市| 义马市| 绥中县| 鄂托克旗| 乌拉特后旗| 桐城市| 滨海县| 乌兰浩特市| 信丰县| 泊头市| 武功县| 新龙县|