How to Add Padding to Android TextView


Set Padding Android TextView

Let us see two ways to add padding to Android TextView,

1. Using XML Attribute

<TextView
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:text="Hello World"
  android:padding="10dp"/>

You may also want to use the below padding options based on your use case.

  • paddingLeft
  • paddingRight
  • paddingTop
  • paddingBottom
  • paddingStart
  • paddingEnd
  • paddingVertical
  • paddingHorizontal

2. Setting TextView Padding Programatically

TextView tv = findViewById(R.id.myTextView);
tv.setPadding(50,10,10,10);

Facing issues? Have Questions? Post them here! I am happy to answer!

Author Info:

Rakesh (He/Him) has over 14+ years of experience in Web and Application development. He is the author of insightful How-To articles for Code2care.

Follow him on: X

You can also reach out to him via e-mail: rakesh@code2care.org



















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap