However, when I try to render the strikethrough back to the EditText, I found the Html.fromHtml method does not support strikethough.
The only way to render the strikethough seems to be through the Webview.
cd C:\Program Files (x86)\Android\android-sdk\platform-toolsStart the emulator and check if adb can detect the emulator
adb devicesStart Shell
adb shellConnect to sqlite
sqlite3 /data/data/{your_package_name}/databases/{your_db}
data/data/{your_app_package_namespace}/databases/{app_name}Click the database icon on the top bar of this right side panel.
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:background="#000000" />
<item android:state_focused="true" android:background="#000000" />
<item android:background="#FFFFFF" />
</selector>
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@color/grey" />
<item android:state_focused="true" android:drawable="@color/grey" />
<item android:drawable="@color/white" />
</selector>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="black">#000</color>
<color name="white">#fff</color>
<color name="grey">#cccccc</color>
</resources>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >