我想显示一个带有文本消息的弹出对话框,但格式不起作用。
我希望它位于弹出窗口的中心并具有特定的字体,但两者都没有应用。
我的代码:
AlertDialog dialog = new AlertDialog.Builder(context).create();
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
View view = LayoutInflater.from(mContext).inflate(R.layout.my_view, null);
dialog.setView(view);
TextView messageView = (TextView) view.findViewById(R.id.message);
messageView.setTextIsSelectable(true);
messageView.setText("This is the message to show");
dialog.show();
和布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center_horizontal"
android:background="@color/red"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:textSize="14sp"/>
</LinearLayout>
这里有什么问题?