매족 MX5에서 다이아로그가 특히 해결하기 어려운 문제에 대한 의혹?

4487 단어
코드를 직접 붙여서 설명하지 않고 천천히 보세요.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:orientation="vertical">


    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="15dp"
        android:paddingTop="15dp"
        android:gravity="center"
        android:text="     "
        android:textColor="@color/withdraw_titlecolor"
        android:textSize="16sp" />

    <include
        layout="@layout/include_line"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp" />

    <EditText
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginLeft="25dp"
        android:layout_marginRight="25dp"
        android:layout_marginTop="20dp"
        android:background="@null" />

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginBottom="20dp"
        android:layout_marginLeft="25dp"
        android:layout_marginRight="25dp"
        android:background="@color/me_line_bg" />

    <include
        layout="@layout/include_line"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginLeft="15dp"
        android:layout_marginRight="15dp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:paddingBottom="15dp"
        android:paddingTop="15dp"
        android:orientation="horizontal"
        android:weightSum="2">

        <TextView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_marginRight="3dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="  "
            android:textColor="@color/withdraw_textcolor"
            android:textSize="15sp" />

        <View
            android:layout_width="1dp"
            android:layout_height="match_parent"
            android:layout_marginBottom="5dp"
            android:layout_marginTop="5dp"
            android:background="@color/me_line_bg" />

        <TextView
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_marginLeft="3dp"
            android:layout_weight="1"
            android:gravity="center"
            android:text="  "
            android:textColor="@color/withdraw_textcolor"
            android:textSize="15sp" />
    </LinearLayout>
</LinearLayout>
package com.jia.IamBestDoctor.business.Utils;

import android.app.Dialog;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.Window;
import android.widget.LinearLayout;

import com.messcat.IamBestDoctor.R;

/**
 * Created by Ly on 2016/5/15.
 */
public class L_ModifyUserNameDialog extends Dialog {
    private Context context;
    private LinearLayout linearLayout;
    private Dialog dialog;

    public L_ModifyUserNameDialog(Context context) {
        super(context);
        this.context = context;
        initView();
    }

    private void initView() {
        LayoutInflater inflaterDl = LayoutInflater.from(context);
        linearLayout = (LinearLayout) inflaterDl.inflate(R.layout.l_dialog_modifyusername,
                null);
        dialog=new Dialog(context);
        dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    }

    public void ShowDialog(){
        dialog.show();
        dialog.getWindow().setContentView(linearLayout);
    }
}

좋은 웹페이지 즐겨찾기