https://colorscripter.com/에서 제공하는 클립보드를 활용해보자. 이를 사용하지않고 윈도우 클립보드를 쓰면 위와 같이 된다. 하지만 아래와 같이 코틀린으로 언어를 세팅하고 클립보드를 사용하면,
이를 사용해서 클립보드 복붙을 하면 아래와 같이 컬러링이 된 문자열을 불러 올 수 있다.
1
2
3
4
5
6
7
8
9
|
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"
android:gravity="center"
android:orientation="vertical"
android:padding="10dp"
tools:context=".LoginActivity">
|