由於感覺android系統自帶的dialog樣式不是很美觀,就自己定義了乙個dialog
1.在styles裡定義樣式
2.在drawable裡定義乙個shape畫圓角
">
3.在layout裡定義個性化布局
4.activity裡的**
layoutinflater inflater=getlayoutinflater();
view view=inflater.inflate(r.layout.activity_version_dialog, null);
dialog dialog=new dialog(this,r.style.mydialog);
dialog.setcontentview(view);
dialog.show();
自定義帶圓角的ImageView
最近有乙個實現乙個帶有圓角的imageview的需求,在網上找了找三方,雖然demo都是正確的,但是移植過來就不可以了,因為請求鏈結的時候用的是xutils中bitmap來進行解析的,這樣就總是會報型別轉換異常的錯誤.就這樣只能自己定義乙個了.demo package com.yizooo.yizo...
android 自定義實現圓角Dialog
首先我們需要自定義dialog布局檔案view input pwd dialog.xml,如下 dialog背景圓角定義dialog bg.xml 實現 layoutinflater inflater layoutinflater from getactivity linearlayout layo...
Android 自定義圓角 陰影布局
設定布局的圓角,將子view超出圓角的區域裁剪掉 設定陰影,不改變子view的大小,將布局大小擴充到可以容納陰影,並調整子view的位置 使用canvas.clip 方法裁剪畫圖區域 存在鋸齒,不使用 使用paint的xfermode進行處理,獲得需要效果 使用 使用viewoutlineprovi...