有没有简单的方法来set width的Toast不定制呢?
谢谢,尼塔尔
更新:
没有这样的方法......我最终以这种方式定制了它......
http://developer.android.com/guide/topics/ui/notifiers/toasts.html
Ris*_*abh 13
使用
Toast t = Toast.makeText(this, "Hello", Toast.LENGTH_SHORT);
t.setGravity(Gravity.FILL_HORIZONTAL, 0, 0);
Run Code Online (Sandbox Code Playgroud)
我用以下方法设置吐司的宽度和高度.
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);
}
}
Run Code Online (Sandbox Code Playgroud)
<?xml version="1.0" encoding="utf-8"?>
<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" />
Run Code Online (Sandbox Code Playgroud)
谢谢迪帕克
| 归档时间: |
|
| 查看次数: |
9977 次 |
| 最近记录: |