從底部彈出Dialog視窗
效果圖
總體結構
dialog_enter.xml //dialog的進入動畫
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="300"
android:fromYDelta="100%"
android:toYDelta="0%" />
</set>
dialog_exit.xml //dialog的退出動畫
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="300"
android:fromYDelta="00%"
android:toYDelta="100%" />
</set>
lay_share.xml //dialog的佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/background_light"
android:orientation="vertical">
<TextView
android:id="@+id/cityName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorButtonNormal"
android:gravity="fill_vertical|center_horizontal"
android:paddingBottom="10dp"
android:paddingTop="10dp"
android:text="@string/cityName"
android:textSize="20dp" />
<TextView
android:id="@+id/tv_cancel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="取消"
android:textSize="24dp" />
</LinearLayout>
style.xml // 控制dialog佈局Theme,控制彈出框的開關
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<!--彈出框動畫-->
<style name="share_animation" parent="android:Animation">
<item name="android:windowEnterAnimation">@anim/dialog_enter</item>
<item name="android:windowExitAnimation">@anim/dialog_exit</item>
</style>
<!-- 對話方塊樣式 -->
<style name="dialog_bottom_full" parent="android:style/Theme.Dialog">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:scrollHorizontally">true</item>
</style>
</resources>
activity_main.xml //初始佈局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button"
android:onClick="showDialog"
/>
</LinearLayout>
MainActivity.java
package com.example.tnt.dialogfrombottom;
import android.app.Dialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
public class MainActivity extends AppCompatActivity {
private Dialog mShareDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
//按鈕 單擊事件
public void btnShowDialog(View view) {
showDialog();// 單擊按鈕後 呼叫顯示檢視的 showDialog 方法,
}
/**
* 顯示彈出框
*/
private void showDialog() {
if (mShareDialog == null) {
initShareDialog();
}
mShareDialog.show();
}
/**
* 初始化分享彈出框
*/
private void initShareDialog() {
mShareDialog = new Dialog(this, R.style.dialog_bottom_full);
mShareDialog.setCanceledOnTouchOutside(true); //手指觸碰到外界取消
mShareDialog.setCancelable(true); //可取消 為true
Window window = mShareDialog.getWindow(); // 得到dialog的窗體
window.setGravity(Gravity.BOTTOM);
window.setWindowAnimations(R.style.share_animation);
View view = View.inflate(this, R.layout.lay_share, null); //獲取佈局檢視
view.findViewById(R.id.tv_cancel).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (mShareDialog != null && mShareDialog.isShowing()) {
mShareDialog.dismiss();
}
}
});
window.setContentView(view);
window.setLayout(WindowManager.LayoutParams.MATCH_PARENT, WindowManager.LayoutParams.WRAP_CONTENT);//設定橫向全屏
}
}
相關文章
- 彈出視窗
- Prism 彈出視窗
- 彈出視窗messagebox
- fastadmin 彈出視窗的功能AST
- 封裝React AntD的dialog彈窗元件封裝React元件
- 封裝Vue Element的dialog彈窗元件封裝Vue元件
- 你可能不知道的dialog彈窗
- Android彈窗元件工作機制之Dialog、DialogFragment(一)Android元件Fragment
- 直播平臺原始碼,Android中常用Dialog彈窗效果原始碼Android
- Qt 讓彈出的視窗居中顯示QT
- css fixed視窗底部固定定位CSS
- van-dialog彈窗非同步關閉-校驗表單非同步
- Android Dialog風格彈出框的ActivityAndroid
- WPF中實現彈出進度條視窗
- 廣告彈窗/小視窗程式碼
- Flutter 入門指北(Part 9)之彈窗和提示(SnackBar、BottomSheet、Dialog)Flutter
- 直播視訊app原始碼,底部彈出的列表對話方塊APP原始碼
- 34.qt quick-Popup彈出視窗自定義QTUI
- 視訊直播原始碼,提醒類彈窗,到時間後自動彈出原始碼
- 短視訊平臺搭建,收到通知後彈出相關提示的彈窗
- 微信小程式之animation底部彈窗動畫(兩種方法)微信小程式動畫
- Win10系統阻止彈出OneDrive視窗的方法Win10
- GridView滑鼠經過感知以及點選行彈出視窗View
- Qt之彈出介面顯示在父視窗中間QT
- MFC CDialogEx.DoModal 彈出Dialog顯示圖示
- win10彈出視窗阻止程式在哪_win10視窗阻止程式怎麼設定Win10
- Skyline Terra Explorer6.6彈出視窗實現複製功能
- JavaScript檢測window.open()彈出視窗是否被攔截JavaScript
- dialog.js彈窗外掛JS
- 仿IOS底部彈框iOS
- MXActionSheet 是一個從底部上來的帶動畫彈窗控制元件,仿微信裡操作一樣!動畫控制元件
- win10按字母鍵就彈出不同視窗怎麼辦 win10打不了字按一個字母就會彈出一個視窗如何解決Win10
- 2019最佳彈窗/彈出框設計20例【附教程】
- Winform在主窗體載入前彈出登入窗體ORM
- Antd的message.error 彈出的視窗不會關閉的問題Error
- VUE 實現 Studio 管理後臺(六):滑鼠懸停顯示彈出視窗Vue
- 短視訊系統原始碼,點選選擇框,底部彈出可以選擇的選項原始碼
- WPF 自定義MessageBox 彈窗提示 彈窗載入