仿IOS彈窗/精美彈窗

先上效果圖


//自定義style话瞧,讓彈窗引用


布局:寫彈窗樣式

效果圖:




布局代碼:

畫個(gè)Shape窄俏,下面布局代碼會用到,給個(gè)圓角顏色:



<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/shape_ui_alert_view" android:orientation="vertical" >

?<TextView android:id="@+id/tvTitle" android:layout_width="match_parent" android:layout_height="60dp" android:gravity="center" android:text="標(biāo)題" android:textColor="@color/text_black" android:textSize="16sp" android:textStyle="bold" />

?<TextView android:id="@+id/tvMessage" android:layout_width="match_parent" android:layout_height="60dp" android:gravity="center" android:text="內(nèi)容" android:textSize="16sp" />

?<View android:layout_width="match_parent"

?android:layout_height="0.5dp"

?android:background="@color/line_gray" />

?<LinearLayout

android:layout_width="match_parent"

?android:layout_height="40dp"

?android:orientation="horizontal" >

?<TextView

?android:id="@+id/tvBtnLeft"

android:layout_width="match_parent"

?android:layout_height="match_parent"

?android:layout_weight="1"

?android:gravity="center" android:text="取消" android:textSize="14sp" />

?<View

?android:layout_width="0.3dp"

?android:layout_height="match_parent"

?android:background="#E0E0E0" />

<TextView

android:id="@+id/tvBtnRight"

android:layout_width="match_parent"

?android:layout_height="match_parent"

?android:layout_weight="1"

android:gravity="center" android:text="確定" android:textSize="14sp" />

?</LinearLayout>



//自定義類繼承Dialog

public class UIAlertViewextends Dialog {

private Contextcontext;

private Stringtitle;

private Stringmessage;

private StringbuttonLeftText;

private StringbuttonRightText;

private ClickListenerInterfaceclickListenerInterface;

public UIAlertView(Context context, String title, String message,

String buttonLeftText, String buttonRightText) {


super(context, R.style.UIAlertViewStyle);

this.context = context;

this.title = title;

this.message = message;

this.buttonLeftText = buttonLeftText;

this.buttonRightText = buttonRightText;

}

public interface ClickListenerInterface {

public void doLeft();

public void doRight();

}

@Override

? ? protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

inite();

}

public void inite() {

LayoutInflater inflater = LayoutInflater.from(context);


//這里是加載布局颂跨,上面已經(jīng)也好了

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

setContentView(view);


//獲取布局中的ID

TextView tvMessage = (TextView) view.findViewById(R.id.tvMessage);

TextView tvLeft = (TextView) view.findViewById(R.id.tvBtnLeft);

TextView tvRight = (TextView) view.findViewById(R.id.tvBtnRight);

TextView tvTitle = (TextView) view.findViewById(R.id.tvTitle);

if ("".equals(title)) {

tvTitle.setVisibility(View.GONE);

}else {

tvTitle.setText(title);

}

tvMessage.setText(message);

tvLeft.setText(buttonLeftText);

tvRight.setText(buttonRightText);

tvLeft.setOnClickListener(new clickListener());

tvRight.setOnClickListener(new clickListener());

Window dialogWindow = getWindow();

WindowManager.LayoutParams lp = dialogWindow.getAttributes();

DisplayMetrics d =context.getResources().getDisplayMetrics();

lp.width = (int) (d.widthPixels *0.8);

dialogWindow.setAttributes(lp);

}

public void setClicklistener(ClickListenerInterface clickListenerInterface) {

this.clickListenerInterface = clickListenerInterface;

}

private class clickListenerimplements View.OnClickListener {

@Override

? ? ? ? public void onClick(View v) {

int id = v.getId();

switch (id) {

//左邊的點(diǎn)擊事件

case R.id.tvBtnLeft:

clickListenerInterface.doLeft();

break;



//右邊的點(diǎn)擊事件

case R.id.tvBtnRight:

clickListenerInterface.doRight();

break;

default:

break;

}

}

}

;

}




這里是具體使用

final UIAlertView delDialog =new UIAlertView(mContext,"溫馨提示","確認(rèn)刪除該商品嗎?",

"取消","確定");

delDialog.show();

delDialog.setClicklistener(new UIAlertView.ClickListenerInterface() {

@Override

public void doLeft() {

//左邊按鈕的點(diǎn)擊事件 //.dismiss()消失彈窗

delDialog.dismiss();

}

//有點(diǎn)按鈕的點(diǎn)擊事件

@Override

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? public void doRight() {

delDialog.dismiss();

}

}

);


結(jié)束!

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末辛萍,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子羡藐,更是在濱河造成了極大的恐慌贩毕,老刑警劉巖,帶你破解...
    沈念sama閱讀 210,914評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件仆嗦,死亡現(xiàn)場離奇詭異辉阶,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,935評論 2 383
  • 文/潘曉璐 我一進(jìn)店門谆甜,熙熙樓的掌柜王于貴愁眉苦臉地迎上來垃僚,“玉大人,你說我怎么就攤上這事规辱∽还祝” “怎么了?”我有些...
    開封第一講書人閱讀 156,531評論 0 345
  • 文/不壞的土叔 我叫張陵罕袋,是天一觀的道長改淑。 經(jīng)常有香客問我,道長浴讯,這世上最難降的妖魔是什么朵夏? 我笑而不...
    開封第一講書人閱讀 56,309評論 1 282
  • 正文 為了忘掉前任,我火速辦了婚禮榆纽,結(jié)果婚禮上仰猖,老公的妹妹穿的比我還像新娘。我一直安慰自己掠河,他們只是感情好亮元,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,381評論 5 384
  • 文/花漫 我一把揭開白布猛计。 她就那樣靜靜地躺著唠摹,像睡著了一般。 火紅的嫁衣襯著肌膚如雪奉瘤。 梳的紋絲不亂的頭發(fā)上勾拉,一...
    開封第一講書人閱讀 49,730評論 1 289
  • 那天,我揣著相機(jī)與錄音盗温,去河邊找鬼藕赞。 笑死,一個(gè)胖子當(dāng)著我的面吹牛卖局,可吹牛的內(nèi)容都是我干的斧蜕。 我是一名探鬼主播,決...
    沈念sama閱讀 38,882評論 3 404
  • 文/蒼蘭香墨 我猛地睜開眼砚偶,長吁一口氣:“原來是場噩夢啊……” “哼批销!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起染坯,我...
    開封第一講書人閱讀 37,643評論 0 266
  • 序言:老撾萬榮一對情侶失蹤均芽,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后单鹿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體掀宋,經(jīng)...
    沈念sama閱讀 44,095評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,448評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了劲妙。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片湃鹊。...
    茶點(diǎn)故事閱讀 38,566評論 1 339
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖是趴,靈堂內(nèi)的尸體忽然破棺而出涛舍,到底是詐尸還是另有隱情,我是刑警寧澤唆途,帶...
    沈念sama閱讀 34,253評論 4 328
  • 正文 年R本政府宣布富雅,位于F島的核電站,受9級特大地震影響肛搬,放射性物質(zhì)發(fā)生泄漏没佑。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,829評論 3 312
  • 文/蒙蒙 一温赔、第九天 我趴在偏房一處隱蔽的房頂上張望蛤奢。 院中可真熱鬧,春花似錦陶贼、人聲如沸啤贩。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,715評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽痹屹。三九已至,卻和暖如春枉氮,著一層夾襖步出監(jiān)牢的瞬間志衍,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,945評論 1 264
  • 我被黑心中介騙來泰國打工聊替, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留楼肪,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,248評論 2 360
  • 正文 我出身青樓惹悄,卻偏偏與公主長得像春叫,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子泣港,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,440評論 2 348