Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I used the following way to set width and height of toast. </p> <h2>How to set width and height to toast</h2> <h2>CancelProgressDialog.java</h2> <pre><code>import android.app.Activity; import android.app.ProgressDialog; import android.content.Context; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.widget.Button; import android.widget.TextView; import android.widget.Toast; public class CancelProgressDialog extends Activity { ProgressDialog myProgressDialog = null; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); /* Create a very simple button */ Button b = new Button(this); this.setContentView(b); b.setText("Show ProgressBar..."); // b.setOnClickListener(myProgressBarShower); Context context = getApplicationContext(); LayoutInflater inflater = getLayoutInflater(); View toastRoot = inflater.inflate(R.layout.customtoast, null); TextView tv = (TextView) toastRoot.findViewById(R.id.toasttext); tv.setWidth(200); tv.setHeight(100); Toast toast = new Toast(context); toast.setView(toastRoot); toast.show(); // toast.setText("I am toast"); toast.setDuration(Toast.LENGTH_LONG); } } </code></pre> <h2>customtoast.xml</h2> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="I am toast" android:textColor="#000000" android:id="@+id/toasttext" android:background="#ffffff" /&gt; </code></pre> <p>Thanks Deepak</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload