我正试图在google docs的帮助下实现简单的快速设置磁贴
但是我的磁贴似乎在那里但是灰色(意图活动) - 我无法点击或做任何事情而无法重新启动我的手机(一加3T / oreo8.0.0)。
和谷歌提供的示例代码相同。
我需要记住什么/怎么做?
有什么我遗失的吗?
我看到了一个类似的问题,但有点过头了。
清单
http:///my_cam_ip/axis-cgi/mjpg/video.cgi?date=1&clock=1&resolution=[WIDTH]x[HEIGHT]
http:///my_cam_ip/axis-cgi/mjpg/video.cgi?camera=[CHANNEL]
JAVA(主要活动)
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return recordings.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = recordings[indexPath.row].lastPathComponent
return cell
}
}
QSintentservice.java
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name=".QSIntentService"
android:icon="@drawable/ic_android_black_24dp"
android:label="@string/qs_intent_tile_label"
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<activity
android:name=".ResultActivity"
android:label="@string/result_label"/>
</application>
}
Result.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
答案 0 :(得分:0)
此代码适用于其他设备。但是,在观察到并注意到的一个加快速设置菜单中存在问题。请查看以下链接进行验证,
https://forums.oneplus.net/threads/android-oreo-8-0-oxigenos-quick-settings-bug.690621/