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="#ff04ff16" android:padding="25dp" android:textSize="30dp" /> <Button android:id="@+id/btn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Set TextView Text Color" android:layout_below="@id/tv" /> </RelativeLayout>
MainActivity.java
package com.cfsuman.me.androidcodesnippets; import android.graphics.Color; 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); tamat 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 font/text color to red. tv.setTextColor(Color.RED); // Set TextView font/text color without alpha. //tv.setTextColor(Color.parseColor("#AB29FF")); // Set TextView text color with transparency. //tv.setTextColor(Color.parseColor("#22AB29FF"));; } }); } }
- How to create a TextView programmatically
- How to center the text vertically in a TextView
- How to change TextView width programmatically
- How to change TextView background color programmatically
- How to add a border to TextView programmatically
- How to set TextView background color transparent programmatically
- How to capitalize TextView text programmatically
- How to set TextView text style programmatically
- How to display html formatted text in a TextView
- How to create a radial gradient programmatically
Komentar
Posting Komentar