0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Android studio:Kotlin:text viewに囲み線

Last updated at Posted at 2020-11-20

app/srv/main/res/drawableに以下を追加

bg_border_black.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <stroke
        android:width="1dp"
        android:color="@color/black" />
    <corners android:radius="5dp" />
</shape>

app/srv/main/res/layout/activity_mail.xmlなどの囲み線をつけたいtextviewに以下を追加して背景に設定。

activity_main.xml
    <TextView
        android:background="@drawable/bg_border_black"/>
</shape>

参考:
https://www.koheiando.com/tech/android/200

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?