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:textColor="#ff6382ff" 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 Background 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); 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 background color to red. tv.setBackgroundColor(Color.CYAN); // Set TextView background color without alpha. //tv.setBackgroundColor(Color.parseColor("#FFEC23")); // Set TextView background with transparency. //tv.setBackgroundColor(Color.parseColor("#22FFEC23"));; } }); } }
- How to create a TextView programmatically
- How to programmatically bold TextView text
- How to change TextView width programmatically
- How to add padding to TextView programmatically
- How to change TextView text color programmatically
- How to add a border to TextView programmatically
- How to set TextView background color transparent programmatically
- How to create a RelativeLayout programmatically
- How to create a horizontal layout RadioGroup
- How to set ListView alternate row color
Komentar
Posting Komentar