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="Sample TextView..." android:background="#ffb2ebff" android:textSize="25dp" android:padding="25dp" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Set TextView Text Italic" android:layout_below="@id/tv" /> </RelativeLayout>
MainActivity.java
package com.cfsuman.me.androidcodesnippets; import android.graphics.Typeface; 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); simpulan 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 text style to italic tv.setTypeface(tv.getTypeface(), Typeface.ITALIC); } }); } }
- How to change TextView width programmatically
- How to add padding to TextView programmatically
- How to set TextView font size programmatically
- How to add a border to TextView programmatically
- How to set TextView background color transparent programmatically
- How to create a gradient background programmatically for a TextView
- How to set TextView text style programmatically
- How to scale RelativeLayout background image
- How to set padding in CheckBox
- How to programmatically scroll to specific item in a ListView
Komentar
Posting Komentar