欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

Android怎么實(shí)現(xiàn)底部彈出按鈕菜單升級(jí)版-創(chuàng)新互聯(lián)

這篇文章主要介紹Android怎么實(shí)現(xiàn)底部彈出按鈕菜單升級(jí)版,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)是工信部頒發(fā)資質(zhì)IDC服務(wù)器商,為用戶提供優(yōu)質(zhì)的綿陽服務(wù)器托管服務(wù)

具體內(nèi)容如下

只貼出關(guān)鍵代碼

 case R.id.myself_share:
        //我的分享
        getShareMune();

getShareMune()

private void getShareMune() {

    final Dialog mdialog = new Dialog(getActivity(), R.style.photo_dialog);
    mdialog.setContentView(View.inflate(getActivity(), R.layout.layout_popwindow, null));
    // 彈出對(duì)話框
    Window window = mdialog.getWindow();
    WindowManager.LayoutParams lp = window.getAttributes();
    lp.gravity = Gravity.BOTTOM;
    lp.y = 20;
    window.setContentView(R.layout.layout_popwindow);
    final Button qq = (Button) window.findViewById(R.id.btn_QQ);
    final Button sina = (Button) window.findViewById(R.id.btn_sina);
    final Button firend = (Button) window.findViewById(R.id.btn_wechatfirend);
    final Button firend1 = (Button) window.findViewById(R.id.btn_wechatfirend1);
    final Button more = (Button) window.findViewById(R.id.btn_more);
    final Button back = (Button) window.findViewById(R.id.btn_cancel);

    //QQ
    qq.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        showZiDingYi(QQ.NAME);
        mdialog.dismiss();
      }
    });
    //新浪
    sina.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
//        showZiDingYi(SinaWeibo.NAME);
        mdialog.dismiss();
      }
    });
    //微信好友
    firend.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        showZiDingYi(Wechat.NAME);
        mdialog.dismiss();
      }
    });
    //微信朋友圈
    firend1.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        showZiDingYi(WechatMoments.NAME);
        mdialog.dismiss();
      }
    });
    //更多
    more.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        mdialog.dismiss();
      }
    });
    //取消
    back.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {

      }
    });
    mdialog.show();

  }

這里還有個(gè)Style

<style name="photo_dialog" parent="android:style/Theme.Dialog">
    <item name="android:windowAnimationStyle">@style/AnimBottom</item>
    <item name="android:windowFrame">@null</item>
    <!-- 邊框 -->
    <item name="android:windowIsFloating">true</item>
    <!-- 是否浮現(xiàn)在activity之上 -->
    <item name="android:windowIsTranslucent">true</item>
    <!-- 半透明 -->
    <item name="android:windowNoTitle">true</item>
    <!-- 無標(biāo)題 -->
    <item name="android:windowBackground">@android:color/transparent</item>
    <!-- 背景透明 -->
    <item name="android:backgroundDimEnabled">true</item>
    <!-- 模糊 -->
  </style>


還有一個(gè)XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:gravity="center_horizontal"
  android:orientation="vertical">

  <LinearLayout
    android:id="@+id/pop_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <Button
      android:id="@+id/btn_QQ"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/button_alter_top_radiu"
      android:padding="@dimen/standard_30px"
      android:text="分享到QQ"
      android:textColor="@color/black" />
    <View
      android:layout_width="match_parent"
      android:layout_height="0.5dp"
      android:background="@color/color_dialog_line" />
    <Button
      android:id="@+id/btn_sina"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/linearlayout_border_no_radiu"
      android:padding="@dimen/standard_30px"
      android:text="分享到新浪"
      android:textColor="@color/black" />
    <View
      android:layout_width="match_parent"
      android:layout_height="0.5dp"
      android:background="@color/color_dialog_line" />
    <Button
      android:id="@+id/btn_wechatfirend"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/linearlayout_border_no_radiu"
      android:padding="@dimen/standard_30px"
      android:text="分享到微信好友"
      android:textColor="@color/black" />
    <View
      android:layout_width="match_parent"
      android:layout_height="0.5dp"
      android:background="@color/color_dialog_line" />
    <Button
      android:id="@+id/btn_wechatfirend1"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/linearlayout_border_no_radiu"
      android:padding="@dimen/standard_30px"
      android:text="分享到微信朋友圈"
      android:textColor="@color/black" />
    <View
      android:layout_width="match_parent"
      android:layout_height="0.5dp"
      android:background="@color/color_dialog_line" />

    <Button
      android:id="@+id/btn_more"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/button_alter_bottom_radiu"
      android:padding="@dimen/standard_30px"
      android:text="分享到更多..."
      android:textColor="@color/black" />

    <Button
      android:layout_marginTop="@dimen/standard_20px"
      android:id="@+id/btn_cancel"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:background="@drawable/button_radius_white_lemonchiffon"
      android:padding="@dimen/standard_30px"
      android:text="取消"
      android:textColor="@color/black" />
  </LinearLayout>
</RelativeLayout>

上效果圖

Android怎么實(shí)現(xiàn)底部彈出按鈕菜單升級(jí)版

以上是“Android怎么實(shí)現(xiàn)底部彈出按鈕菜單升級(jí)版”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

網(wǎng)頁名稱:Android怎么實(shí)現(xiàn)底部彈出按鈕菜單升級(jí)版-創(chuàng)新互聯(lián)
鏈接URL:http://aaarwkj.com/article36/dpeppg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護(hù)、標(biāo)簽優(yōu)化、網(wǎng)站制作、營(yíng)銷型網(wǎng)站建設(shè)、云服務(wù)器、網(wǎng)站設(shè)計(jì)公司

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)
日本人妻中文字幕一区| 色桃子av一区二区三区| 另类视频在线观看免费| 蜜臀av一区二区在线观看| 国产大片在线观看一区二区| 97在线视频观看视频在线| 一区二区三区四区四虎| 成人黄色动作片在线观看| 亚洲少妇插进去综合网| 黄色录像一级二级三级| 欧美性生活之欧美日韩| 久久婷婷激情亚洲综合色| 久久亚洲精品中文字幕| 日本欧美高清一区二区| 国产精品自偷自偷自偷| 成人在线观看av毛片| 成人污视频网站在线观看| 精品视频偷拍一区二区三区| 国产男女免费完整视频| 婷婷激情综合亚洲五月色| 色婷婷狠狠久久综合中文一本| 精精国产xxxx视频在线不卡| 亚洲一级特黄大片在线观看| 婷婷国产综合一区二区三区| 超碰97国产资源在线| 精品欧美熟妇高潮喷水特黄 | 亚洲成av人在线观看福利| 久久国产精品乱码电影| 中文字幕国产精品综合一区| 97色伦综合在线欧美视频| 视频一区视频二区在线| 欧美影院波波在线影院| 日本一区二区日本一区| 免费在线av一区二区| 久久精品性少妇一区二区三区| 免费无码不卡av一区二区| 免费毛片一区二区三区四区| 国内一级片内射免费视频观看| 日本精品在线一区二区| 欧美日韩国产免费,日日骚| 草草影院最新地址在线观看|