在Android中,要在富文本中實現文本刪除線,可以使用SpannableString
和StrikethroughSpan
。以下是一個簡單的示例:
build.gradle
文件中添加了以下依賴項:dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
}
SpannableString
并添加要刪除線的文本。接著,使用StrikethroughSpan
應用刪除線樣式:import android.graphics.Typeface;
import android.os.Bundle;
import android.text.SpannableString;
import android.text.Spanned;
import android.text.style.StrikethroughSpan;
import android.widget.TextView;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView textView = findViewById(R.id.textView);
String text = "這是一段帶有刪除線的文本。";
SpannableString spannableString = new SpannableString(text);
// 應用刪除線樣式
int startIndex = text.indexOf("刪除線");
int endIndex = startIndex + "刪除線".length();
spannableString.setSpan(new StrikethroughSpan(), startIndex, endIndex, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
textView.setText(spannableString);
}
}
在這個示例中,我們首先創建了一個SpannableString
對象,并設置了要刪除線的文本。然后,我們使用indexOf()
方法找到要刪除線的文本的起始位置,接著使用setSpan()
方法應用StrikethroughSpan
樣式。最后,我們將帶有刪除線的SpannableString
設置為TextView
的文本。