亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

用Dialog類創建dialog后報dialog空指針,用private AlertDialog.Builder builder;可以

報錯:

private ImageView mVoice;

private TextView mLable;

private Context mContext;

private Dialog dialog;


/** * 構造方法 傳入上下文 */

public DialogManager(Context context) {

this.mContext = context;

}


// 顯示錄音的對話框

public void showRecordingDialog() {

dialog = new Dialog(mContext, R.style.Theme_AudioDialog);

LayoutInflater inflater = LayoutInflater.from(mContext);

View view = inflater.inflate(R.layout.dialog_recorder, null);

mVoice = (ImageView) view.findViewById(R.id.id_recorder_dialog_voice);

mLable = (TextView) view.findViewById(R.id.id_recorder_dialog_label);

dialog.setContentView(view);

dialog.show();//報空指針

不報錯:

private AlertDialog.Builder builder;

private ImageView mVoice;

private TextView mLable;

private Context mContext;

private Dialog dialog;// 用于取消AlertDialog.Builder


/** * 構造方法 傳入上下文 */

public DialogManager(Context context) {

this.mContext = context;

}


// 顯示錄音的對話框

public void showRecordingDialog() {

builder = new AlertDialog.Builder(mContext, R.style.Theme_AudioDialog);

LayoutInflater inflater = LayoutInflater.from(mContext);

View view = inflater.inflate(R.layout.dialog_recorder, null);

mVoice = (ImageView) view.findViewById(R.id.id_recorder_dialog_voice);

mLable = (TextView) view.findViewById(R.id.id_recorder_dialog_label);

builder.setView(view);

builder.create();

dialog = builder.show();

Window w=dialog.getWindow();

WindowManager.LayoutParams lp =w.getAttributes();

//顯示位置

lp.x=1;

lp.y=3;

w.setAttributes(lp);


正在回答

1 回答

?style加上parent="@android:style/Theme.Translucent">解決

0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消
Android-仿微信語音聊天
  • 參與學習       43189    人
  • 解答問題       248    個

結合自定義View和API,Dialog管理等實現實現微信語音

進入課程

用Dialog類創建dialog后報dialog空指針,用private AlertDialog.Builder builder;可以

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號