如何删除客户对话框的标题。
并删除其空格
三江源。
我的布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="top" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="78dp"
android:layout_marginTop="2dp"
android:background="#00000000"
android:gravity="top"
android:text="Click to the button "
android:textColor="#ffff00"
android:textSize="15sp" />
</LinearLayout>
我的代码
final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setTitle("Daialos");
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
dialog.setContentView(R.layout.splash);
dialog.setCancelable(true);
dialog.show();
我正在使用
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
避免标题,但它只避免文本而不是空格。
答案 0 :(得分:1)
为什么要为对话框设置标题,而您又想要删除标题?你应该这样做:
final Dialog dialog = new Dialog(this);
LayoutInflater inflater = getLayoutInflater();
View view = inflater.inflate(R.layout.splash, null)
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.setContentView(view);
dialog.show();
答案 1 :(得分:0)
删除行dialog.setTitle()。 然后它运作正常。