• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java WiFiUtils类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中com.google.samples.apps.iosched.util.WiFiUtils的典型用法代码示例。如果您正苦于以下问题:Java WiFiUtils类的具体用法?Java WiFiUtils怎么用?Java WiFiUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



WiFiUtils类属于com.google.samples.apps.iosched.util包,在下文中一共展示了WiFiUtils类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: onCreateView

import com.google.samples.apps.iosched.util.WiFiUtils; //导入依赖的package包/类
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
        @Nullable Bundle savedInstanceState) {
    View root = inflater.inflate(R.layout.info_event_frag, container, false);
    mWiFiNetworkText = (TextView) root.findViewById(R.id.wifi_network_value);
    mWiFiPasswordText = (TextView) root.findViewById(R.id.wifi_password_value);
    mWiFiSave = (Button) root.findViewById(R.id.wifi_save);
    mWiFiSave.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            boolean saved = WiFiUtils.installConferenceWiFi(getContext());
            Snackbar.make(getView(), saved ? R.string.wifi_install_success
                    : R.string.wifi_install_error_message, Snackbar.LENGTH_SHORT).show();
        }
    });
    mSandboxEventContent = (EventView) root.findViewById(R.id.sandbox_event);
    mCodeLabsEventContent = (EventView) root.findViewById(R.id.codelabs_event);
    mOfficeHoursEventContent = (EventView) root.findViewById(R.id.officehours_event);
    mAfterHoursEventContent = (EventView) root.findViewById(R.id.afterhours_event);
    mSandboxEventContent.setEventViewClickListener(this);
    mCodeLabsEventContent.setEventViewClickListener(this);
    mOfficeHoursEventContent.setEventViewClickListener(this);
    mAfterHoursEventContent.setEventViewClickListener(this);
    return root;
}
 
开发者ID:google,项目名称:iosched,代码行数:27,代码来源:EventFragment.java


示例2: setupWifiOfferCard

import com.google.samples.apps.iosched.util.WiFiUtils; //导入依赖的package包/类
private void setupWifiOfferCard(final MessageCardView card) {
    card.setText(getString(TimeUtils.hasConferenceStarted(getActivity()) ?
            R.string.question_setup_wifi_after_i_o_start :
            R.string.question_setup_wifi_before_i_o_start));
    card.setButton(0, getString(R.string.no_thanks), CARD_ANSWER_NO,
            false, 0);
    card.setButton(1, getString(R.string.setup_wifi_yes), CARD_ANSWER_YES,
            true, 0);
    final Context context = getActivity().getApplicationContext();
    card.setListener(new MessageCardView.OnMessageCardButtonClicked() {
        @Override
        public void onMessageCardButtonClicked(final String tag) {
            card.dismiss(true);

            // post delayed to give card time to animate
            mHandler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    if (CARD_ANSWER_YES.equals(tag)) {
                        WiFiUtils.showWiFiDialog(SessionsFragment.this.getActivity());
                    } else {
                        PrefUtils.markDeclinedWifiSetup(context);
                    }
                }
            }, CARD_DISMISS_ACTION_DELAY);
        }
    });
    card.show();
}
 
开发者ID:gdg-bh,项目名称:AppDevFestSudeste2015,代码行数:30,代码来源:SessionsFragment.java


示例3: getNextMessageCard

import com.google.samples.apps.iosched.util.WiFiUtils; //导入依赖的package包/类
/**
 * @return the next message card that should be displayed to the user
 */
public static MessageData getNextMessageCard(@NonNull Context context) {
    if (shouldShowCard(context, ConfMessageCard.SIGN_IN_PROMPT)) {
        return notSignedInCard();
    }
    if (shouldShowCard(context, ConfMessageCard.SESSION_NOTIFICATIONS)) {
        return getNotificationsOptInMessageData();
    }
    if (RegistrationUtils.isRegisteredAttendee(context) ==
            RegistrationUtils.REGSTATUS_REGISTERED) {
        // Users are required to opt in or out of whether they want conference message cards
        if (!ConfMessageCardUtils.hasAnsweredConfMessageCardsPrompt(context)) {
            // User has not answered whether they want to opt in.
            // Build a opt-in/out card.
            return getConferenceOptInMessageData();
        }

        if (ConfMessageCardUtils.isConfMessageCardsEnabled(context)) {
            LOGD(TAG, "Conf cards Enabled");
            // User has answered they want to opt in AND the message cards are enabled.
            ConfMessageCardUtils.enableActiveCards(context);

            // Note that for these special cards, we'll never show more than one at a time
            // to prevent overloading the user with messagesToDisplay.
            // We want each new message to be notable.
            if (shouldShowCard(context, ConfMessageCard.WIFI_PRELOAD)) {
                // Check whether a wifi setup card should be offered.
                if (WiFiUtils.shouldOfferToSetupWifi(context, true)) {
                    // Build card asking users whether they want to enable wifi.
                    return getWifiSetupMessageData();
                }
            }

            LOGD(TAG, "Simple cards");
            List<ConfMessageCard> simpleCards
                    = ConfMessageCard.getActiveSimpleCards(context);
            if (!simpleCards.isEmpty()) {
                return getSimpleMessageCardData(simpleCards.get(0));
            }
        }
    }
    return null;
}
 
开发者ID:google,项目名称:iosched,代码行数:46,代码来源:MessageCardHelper.java



注:本文中的com.google.samples.apps.iosched.util.WiFiUtils类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Trie类代码示例发布时间:2022-05-22
下一篇:
Java CliSessionState类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap