activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/rl" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="16dp" tools:context=".MainActivity" android:background="@android:color/white" > <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="TextView..." android:background="#ff73ffaf" android:textSize="25dp" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Set TextView Padding" android:layout_below="@id/tv" /> </RelativeLayout>
MainActivity.java
package com.cfsuman.me.androidcodesnippets; import android.os.Bundle; import android.app.Activity; import android.view.View; import android.widget.Button; import android.widget.RelativeLayout; import android.widget.TextView; public class MainActivity extends Activity{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // Get the widgets reference from XML layout RelativeLayout rl = (RelativeLayout) findViewById(R.id.rl); akibat TextView tv = (TextView) findViewById(R.id.tv); Button btn = (Button) findViewById(R.id.btn); // Set a click listener for Button widget btn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { /* Set TextView padding in pixels. Set padding order by Left, Top, Right and Bottom side in pixels. Set 25 pixels padding each sides of TextView */ tv.setPadding(25,25,25,25); /* If we want to set left padding only, then we should set a positive value for first parameter and others to zero */ // This line added 25 pixels padding only TextView left side //tv.setPadding(25,0,0,0); } }); } }
- How to set Button text size
- How to add a dashed border to a Button
- How to create a TextView programmatically
- How to programmatically bold TextView text
- How to center the text vertically in a TextView
- How to set TextView gravity programmatically
- How to change TextView width programmatically
- How to set TextView text style italic programmatically
- How to set TextView font size programmatically
- How to display html formatted text in a TextView
Komentar
Posting Komentar