国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android實現自定義dialog的代碼

2019-10-21 21:36:10
字體:
來源:轉載
供稿:網友

Android自定Dialog

先上效果圖:

Android,dialog,代碼

1.先在drawable下新建一個drawble resource file,這個文件用于dialog的圓角背景

 

<?xml version="1.0" encoding="utf-8"?> 2.在layout下新建一個xml文件,這個布局的背景使用剛剛定義的drawable文件,android:background="@drawable/建的drawable文件" <?xml version="1.0" encoding="utf-8"?><TextView  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:text="操作遙控器"  android:textColor="#585858"  android:textSize="25dp"  android:gravity="center"  /><TextView  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:layout_margin="5dp"  android:textColor="#585858"  android:text="按開關/模式/溫度加減任意一鍵學習"  android:textSize="20dp"  android:gravity="center"  /><LinearLayout  android:layout_width="match_parent"  android:layout_height="140dp"  android:orientation="horizontal"  android:padding="10dp"  >  <Button    android:layout_width="100dp"    android:layout_height="wrap_content"    android:background="@mipmap/yaokong"    android:layout_marginLeft="35dp"    />  <!--<ImageView-->    <!--android:layout_width="100dp"-->    <!--android:layout_height="wrap_content"-->    <!--android:src="@mipmap/yaokong"-->    <!--android:layout_marginLeft="35dp"-->    <!--/>-->  <LinearLayout    android:layout_width="150dp"    android:layout_height="wrap_content"    android:orientation="vertical"    android:layout_marginLeft="15dp"    android:layout_marginBottom="5dp"    >    <ImageView      android:layout_width="wrap_content"      android:layout_height="90dp"      android:src="@mipmap/xuanhuang" />    <TextView      android:layout_width="wrap_content"      android:layout_height="wrap_content"      android:layout_gravity="center"      android:text="等待學習按鍵..."      android:textColor="#585858"      android:textSize="20dp"      />  </LinearLayout></LinearLayout><LinearLayout  android:id="@+id/yaokongCancel"  android:layout_width="match_parent"  android:layout_height="match_parent"  android:orientation="vertical"  ><Viewandroid:layout_width="match_parent"android:layout_height="1px"android:layout_marginTop="1dp"android:background="#8d8d8f"/><TextView  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:gravity="center"  android:layout_marginTop="8dp"  android:textColor="#1196db"  android:textSize="25dp"  android:text="取消"  /></LinearLayout>

3.在values的styles設置dialog樣式

4.之后去顯示

 

package com.example.atry.test;import android.app.Dialog;import android.content.Context;import android.os.Bundle;import android.support.v7.app.ActionBar;import android.support.v7.app.AppCompatActivity;import android.view.LayoutInflater;import android.view.View;import android.widget.LinearLayout;public class tianjiayaokong extends AppCompatActivity {// 這個為點擊顯示dialog的布局private LinearLayout kongtiaol;// dialog中的取消private LinearLayout yaokongCancel;@Overrideprotected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_tianjiayaokong);  ActionBar actionBar = getSupportActionBar();  if(actionBar != null) {    actionBar.hide();  }  kongtiaol = findViewById(R.id.kongtiaol);  kongtiaol.setOnClickListener(new View.OnClickListener() {    @Override    public void onClick(View view) {      showDialog();    }  });}/** * 顯示dialog */private void showDialog(){  LayoutInflater inflater = getLayoutInflater();  //通過inflate加載出自定義布局  View view = inflater.inflate(R.layout.activity_dialog_componet,null);  final Dialog dialog = new Dialog(this,R.style.custom_dialog);  dialog.setContentView(view);  yaokongCancel = view.findViewById(R.id.yaokongCancel);  yaokongCancel.setOnClickListener(new View.OnClickListener() {    @Override    public void onClick(View view) {      dialog.dismiss();    }  });  dialog.show();}}

總結

以上所述是小編給大家介紹的Android實現自定義dialog的代碼,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時回復大家的!


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 屏南县| 隆林| 绩溪县| 吴江市| 景宁| 沂水县| 八宿县| 绍兴县| 兴业县| 吴江市| 广平县| 浙江省| 抚州市| 延川县| 象州县| 屯留县| 平罗县| 马边| 襄汾县| 阿拉尔市| 和田市| 安泽县| 辽宁省| 巴彦县| 高唐县| 黔东| 台安县| 民丰县| 黔江区| 大城县| 昌黎县| 鹤壁市| 淅川县| 霞浦县| 双柏县| 哈密市| 韩城市| 奉新县| 隆化县| 浦北县| 广州市|