WiFiDirectActivity是什么/在哪里

时间:2014-10-29 13:33:54

标签: android eclipse

我试图理解并实现“Creating P2P Connections with Wi-Fi”中描述的(不完整)代码。这是为我现有的活动添加一个单独的类。示例代码中有一行如下:

activity.setIsWifiP2pEnabled(true);

但未显示变量“activity”来自何处。正在寻找使用setIsWifiP2pEnabled()的其他示例代码,我看到one which declared activity如下:

private WiFiDirectActivity activity;

但如果我添加该行,则会收到错误WiFiDirectActivity cannot be resolved to a type。 Eclipse没有任何建议可以添加任何导入。所以我被卡住了。

2 个答案:

答案 0 :(得分:4)

该文件是示例项目的一部分,而不是供您使用的库/ jar。如果您需要它来实现您的代码,请查看该项目

请参阅: https://android.googlesource.com/platform/development/+/master/samples/WiFiDirectDemo/src/com/example/android/wifidirect/WiFiDirectActivity.java

答案 1 :(得分:0)

dev=# \d brand_model
   Table "public.brand_model"
  Column  |  Type   | Modifiers 
----------+---------+-----------
 brand_id | integer | not null
 model_id | integer | not null
Indexes:
    "brand_model_pkey" PRIMARY KEY, btree (brand_id, model_id)
    "uniq_8c6cbbce7975b7e7" UNIQUE, btree (model_id)
    "idx_8c6cbbce44f5d008" btree (brand_id)
Foreign-key constraints:
    "fk_8c6cbbce44f5d008" FOREIGN KEY (brand_id) REFERENCES brand(id) ON DELETE CASCADE
    "fk_8c6cbbce7975b7e7" FOREIGN KEY (model_id) REFERENCES model(id)

这是github上完整的WIFI Direct的android sdk示例 GITHUB