- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些在 mainactivity 中运行良好的蓝牙示例代码。然后我将它移动到一个新的 Activity 并制作了一个按钮来运行该页面。我可以进入 Activity 并单击按钮来激活我的蓝牙功能,但是当它到达线路时它崩溃了:
if (!myBluetoothAdapter.isEnabled())
里面Set_Up_Connection.java
但是行myBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
和if(myBluetoothAdapter == null)
工作正常。
主要 Activity
package com.evenfurtherbeyond.bluetoothsendrecieve;
//imports are created automatically when requested by functions
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import java.util.Set;
public class MainActivity extends Activity {
//define the settings button variable
private Button settingsBtn;
public BluetoothAdapter myBluetoothAdapter;
protected Set<BluetoothDevice> pairedDevices;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// take an instance of BluetoothAdapter - Bluetooth radio
myBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
//on the apps creation set the content view to the activity_my.xml layout.
setContentView(R.layout.activity_main);
//define settings button
settingsBtn = (Button) findViewById(R.id.settingsbt);
//set up an on click listener
settingsBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//define an intent to start a new activity
//for starting Activity because you will need to pass Application or component
// context as first parameter to Intent Constructor when you are creating
// intent for a specific component of application.
Intent settingsIntent = new Intent(v.getContext(), Set_Up_Connection.class);
//start the intent.
startActivity(settingsIntent);
}
});
}
}
设置连接
package com.evenfurtherbeyond.bluetoothsendrecieve;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.Toast;
import java.util.Set;
public class Set_Up_Connection extends Activity {
private Button onBtn;
private TextView text;
private BluetoothAdapter myBluetoothAdapter;
protected Set<BluetoothDevice> pairedDevices;
//sets the paired device object as a bluetooth device object container.
protected ListView myListView;
private ArrayAdapter<String> BTArrayAdapter;
//containers for variables, many of the variables relate to the buttons defined in the activity_my.xml.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.set_up_bt);
//on the apps creation set the content view to the activity_my.xml layout.
// take an instance of BluetoothAdapter - Bluetooth radio
myBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
//get the default adater string/id and place it in myBluetoothAdapter
if(myBluetoothAdapter == null) {
//if an adapter doesn't exist
onBtn.setEnabled(false);
text.setText("Status: not supported");
Toast.makeText(getApplicationContext(), "Your device does not support Bluetooth",
Toast.LENGTH_LONG).show();
//display a long notification that the device doesn't have bluetooth.
} else {
text = (TextView) findViewById(R.id.text);
//make the text variable equal the type 'TextView' of the 'R.id.text' id value.
//text =/= 'R.id.text but rather text = the address of 'R.id.text'
//whatever 'R.id.text' equals, 'text' now equals.
onBtn = (Button)findViewById(R.id.turnOn);
//onBtn = type 'Button' address 'R.id.turnOn'
onBtn.setOnClickListener(new View.OnClickListener() {
//set an onclick listener to do something.
@Override
public void onClick(View v) {
on(v);
}
//when the 'turnon' button is pressed run the method 'on' and pass it the current view 'v'
});
myListView = (ListView)findViewById(R.id.listView1);
// create the arrayAdapter that contains the BTDevices, and set it to the ListView
BTArrayAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1);
//create an array adapter object of type String using 'this' context and the 'simple list item 1' layout.
myListView.setAdapter(BTArrayAdapter);
//set the ListView to the Array Adapter creating a list of the 'BTArrayAdapter' array
}
}
public void on(View view) {
if (!myBluetoothAdapter.isEnabled()) {
//isEnabled checks if the bluetooth adapter is enabled.
Intent turnOnIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
//start an intent to show a system activity that allows the user to turn on Bluetooth.
}
else{
Toast.makeText(getApplicationContext(),"Bluetooth is already on",
Toast.LENGTH_LONG).show();
//else display a notification that BT is already on.
}
}
}
AndroidManifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.evenfurtherbeyond.bluetoothsendrecieve" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".Set_Up_Connection"
android:label="Set Up Bluetooth"
android:parentActivityName=".MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.evenfurtherbeyond.MainActivity"/>
</activity>
</application>
</manifest>
日志
11-17 19:38:09.585 8472-8472/com.evenfurtherbeyond.bluetoothsendrecieve E/AndroidRuntime﹕ FATAL EXCEPTION: main
java.lang.SecurityException: Need BLUETOOTH_ADMIN permission: Neither user 10084 nor current process has android.permission.BLUETOOTH_ADMIN.
at android.os.Parcel.readException(Parcel.java:1425)
at android.os.Parcel.readException(Parcel.java:1379)
at android.bluetooth.IBluetooth$Stub$Proxy.disable(IBluetooth.java:1048)
at android.bluetooth.BluetoothAdapter.disable(BluetoothAdapter.java:527)
at com.evenfurtherbeyond.bluetoothsendrecieve.Set_Up_Connection.off(Set_Up_Connection.java:211)
at com.evenfurtherbeyond.bluetoothsendrecieve.Set_Up_Connection$2.onClick(Set_Up_Connection.java:88)
at android.view.View.performClick(View.java:4209)
at android.view.View$PerformClick.run(View.java:17431)
at android.os.Handler.handleCallback(Handler.java:725)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:153)
at android.app.ActivityThread.main(ActivityThread.java:5297)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)
最佳答案
在有人请求 logcat 后,我看到问题已记录。使用以下命令更新 list 以包含蓝牙和 Bluetooth_Admin 权限后:
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
来自教程http://developer.android.com/guide/topics/security/permissions.html应用程序运行顺利。
关于android - 将蓝牙代码移至新 Activity ,现在在激活时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26968362/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!