91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android中TextView怎么動態設置縮進距離

發布時間:2022-04-25 09:09:07 來源:億速云 閱讀:310 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“Android中TextView怎么動態設置縮進距離”,內容詳細,步驟清晰,細節處理妥當,希望這篇“Android中TextView怎么動態設置縮進距離”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

需求是需要在TextView前端加入一個標簽展示。

最終效果圖如下:

Android中TextView怎么動態設置縮進距離

根據效果圖,很容易就能想到使用SpannableStringBuilder,在這里使用到的就是LeadingMarginSpan這個類了。

官方說明: A paragraph style affecting the leading margin. There can be multiple leading margin spans on a single paragraph; they will be rendered in order, each adding its margin to the ones before it. The leading margin is on the right for lines in a right-to-left paragraph.

LeadingMarginSpans should be attached from the first character to the last character of a single paragraph.

簡單說,就是設置段落的縮進距離。

相關API使用:

val spannableString = SpannableString(text)
val what = LeadingMarginSpan.Standard(width, 0)
spannableString.setSpan(what, 0, spannableString.length, SpannableString.SPAN_INCLUSIVE_INCLUSIVE)

LeadingMarginSpan是接口,內部的Standard是它的標準實現方式。有兩個構造方法,Standard(int every)和Standard(int first, int rest)。Standard(int every)是給每一行都設置同樣的縮進距離,而Standard(int first, int rest)是給第一行和其他行分別設置縮進距離。我們這里使用的就是Standard(int first, int rest)實現方式了。 接下來setSpan方法,如果有使用過其他的ForegroundColorSpan、AbsoluteSizeSpan等span就不陌生了。傳入四個參數,第一個參數就是創建出來的Span,第二個參數和第三個參數為Span作用的范圍,第四個參數表示是否包含前后邊界,INCLUSIVE就是表示包含邊界,EXCLUSIVE就是不包含邊界了。

知道了怎么設置縮進距離之后,接下去就是要獲取到標簽的寬度。標簽是View,只有在View渲染完成之后才能獲取到準確的寬度。這里使用的方法就是獲取到標簽View的viewTreeObserver,然后addOnPreDrawListener,需要注意獲取到寬度之后就及時removeOnPreDrawListener。具體實現如下:

class MainActivity2 : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        val tv1 = findViewById<TextView>(R.id.tv1)
        val tv2 = findViewById<TextView>(R.id.tv2)
        tv1.text = "New"
        calculateTag(tv1, tv2, "This is a long long long long title")
    }

    //動態設置縮進距離
    fun calculateTag(tag: TextView, title: TextView, text: String?) {
        val observer = tag.viewTreeObserver
        observer.addOnPreDrawListener(object : ViewTreeObserver.OnPreDrawListener {
            override fun onPreDraw(): Boolean {
                val spannableString = SpannableString(text)
                val what = LeadingMarginSpan.Standard(tag.width + dip2px(this@MainActivity2, 3.0), 0)
                spannableString.setSpan(
                    what,
                    0,
                    spannableString.length,
                    SpannableString.SPAN_INCLUSIVE_INCLUSIVE
                )
                title.text = spannableString
                tag.viewTreeObserver.removeOnPreDrawListener(
                    this
                )
                return false
            }
        })
    }

    fun dip2px(context: Context, dpValue: Double): Int {
        val density: Float = context.resources.displayMetrics.density
        return (dpValue * density + 0.5).toInt()
    }
}

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="10dp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <TextView
            android:id="@+id/tv1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp"
            android:layout_marginEnd="3dp"
            android:background="@drawable/bg_tag"
            android:includeFontPadding="false"
            android:paddingHorizontal="2dp"
            android:textColor="@color/white"
            android:textSize="13sp" />

        <TextView
            android:id="@+id/tv2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@color/black"
            android:textSize="17sp"
            android:textStyle="normal" />
    </FrameLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

讀到這里,這篇“Android中TextView怎么動態設置縮進距離”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

合山市| 沭阳县| 柳江县| 句容市| 阳西县| 漳州市| 柳河县| 桃园县| 平江县| 满洲里市| 洪江市| 额济纳旗| 江都市| 前郭尔| 全椒县| 潼关县| 柳林县| 虹口区| 炉霍县| 扬州市| 横峰县| 贵港市| 兴义市| 隆尧县| 河北省| 台湾省| 唐山市| 东光县| 沿河| 轮台县| 南江县| 永寿县| 奎屯市| 海原县| 河源市| 衡阳市| 奉化市| 新龙县| 荥阳市| 清水河县| 拉萨市|