希望你能在这里帮助我!我想制作一个开关按钮,以打开每日推送通知功能。我怎么做?
开关按钮位于“设置”片段上
我的MainActivity.java:
public class MainActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
displayView(R.id.nav_home);
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
return;
}
if (getSupportFragmentManager().findFragmentById(R.id.content_main) instanceof Article) {
((Article) getSupportFragmentManager().findFragmentById(R.id.content_main)).handleOnBackPress();
return;
}
if (getSupportFragmentManager().getBackStackEntryCount() == 0) {
displayView(R.id.nav_home);
} else {
super.onBackPressed();
}
}
private void displayView(int itemId) {
Fragment fragment = null;
switch (itemId) {
case R.id.nav_home:
fragment = new Article();
break;
case R.id.nav_Recipes:
fragment = new RecipesMain();
break;
case R.id.nav_Converter:
fragment = new Converter();
break;
case R.id.nav_Videos:
fragment = new Videos();
break;
case R.id.nav_Tracking:
fragment = new Tracking();
break;
case R.id.nav_TrainerMenu:
fragment = new TrainerMenu();
break;
case R.id.nav_Settings:
fragment = new Settings();
break;
case R.id.nav_About:
showDialog();
break;
}
if (fragment != null) {
final Fragment finalFragment = fragment;
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
getSupportFragmentManager()
.beginTransaction()
.setCustomAnimations(android.R.anim.slide_in_left, android.R.anim.slide_out_right)
.replace(R.id.content_main, finalFragment)
.commit();
}
}, 0);
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
displayView(item.getItemId());
return true;
}
private void showDialog()
{
String text2 = "<font color=#6774bd>About SG50 App</font>";
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.AppCompatAlertDialogStyle);
builder.setTitle(Html.fromHtml(text2));
String text3 = "<font color=#A4A4A4>App made by Matan Cohen , Please contact me for any questions.</font>";//for custom message
builder.setMessage(Html.fromHtml(text3));
builder.setPositiveButton("OK", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
Toast toast = Toast.makeText(getApplicationContext(), "תודה על שימוש", Toast.LENGTH_SHORT);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.show();
}
});
builder.show();
}
}
片段Settings.java 的“ editor.getBoolean”给我无法解决错误! 我能做什么?:
public class Settings extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_settings, container, false);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
getActivity().setTitle("הגדרות");
Switch aSwitch = (Switch) getView().findViewById(R.id.dailyTipSwitch);
SharedPreferences sharedPreferences = getActivity().getSharedPreferences("key", 0);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("switchValue", aSwitch.isChecked());
editor.apply();
boolean showNotifications = editor.getBoolean("key",false);
if (aSwitch.isChecked() != showNotifications) {
editor.putBoolean("key",!showNotifications).apply();
}
else {
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY,19);
calendar.set(Calendar.MINUTE,27);
Intent intent = new Intent(getActivity().getApplicationContext(),NotificationReciever.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(getActivity().getApplicationContext(),100,intent,PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager alarmManager = (AlarmManager) getActivity().getSystemService(ALARM_SERVICE);
alarmManager.setRepeating(alarmManager.RTC_WAKEUP,calendar.getTimeInMillis(),AlarmManager.INTERVAL_DAY,pendingIntent);
}
}
}
Notification_Reciever.java
public class NotificationReciever extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
Intent repeatingIntent = new Intent(context,MainActivity.class);
repeatingIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context,100,repeatingIntent,PendingIntent.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder mBuilder = new
NotificationCompat.Builder(context)
.setSmallIcon(R.mipmap.ic_launcher)
.setStyle(new NotificationCompat.BigTextStyle().bigText("בוקר טוב אלוף! תאכל ותשתה טוב!"))
.setContentText(context.getString(R.string.NotificationText))
.setContentTitle(context.getString(R.string.GoodMorningNotification))
.setContentIntent(pendingIntent)
.setAutoCancel(true);
notificationManager.notify(100, mBuilder.build());
}
}
fragemnt_settings.XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="30dp"
android:paddingBottom="30dp"
android:paddingTop="30dp"
android:paddingRight="30dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1">
<Switch
android:id="@+id/switch1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_gravity="left" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_gravity="right"
android:text="@string/daily_tip"
android:textSize="20sp"/>
</LinearLayout>
</LinearLayout>
谢谢!!希望你能帮我!
editor.getBoolean给我无法解决错误!!!我能做什么???
您将需要将开关的值保存在某个地方(SQLite或SharedPreferences),并检查它是否为当前开关值,然后将其值保持 在选中或未选中的位置
这是创建SharedPreferences并放入值的方法:
SharedPreferences sharedPreferences = getSharedPreferences("key", 0);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("switchValue", aSwitch.isChecked());
editor.apply();
这是检查SharedPreferences值并进行更改的方法:
Boolean showNotifications = editor.getBoolean("key",false);
if (aSwitch.isChecked() != showNotifications) {
editor.putBoolean("key",!showNotifications).apply();
}
您要在其中通知通知的位置,应检查SharedPreferences值:
Boolean showNotifications = editor.getBoolean("key",false);
已编辑 这是您触发通知的方式:
NotificationCompat.Builder mBuilder = new
NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.your_drawable)
.setStyle(new NotificationCompat.BigTextStyle().bigText("notification text"))
.setContentText(notificationToNotify.getText())
.setContentTitle(CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "notification title"))
.setContentIntent(contentPendingIntent)
.setDeleteIntent(deletePendingIntent)
.setAutoCancel(true);
//notify the Notification
mNotifyMgr.notify(notification_id, mBuilder.build());
notification_id-您可以为每个通知提供的int ID。您可以设置删除意图和内容意图(如果用户单击通知)
男人,您需要使用相同的“密钥”。像那样:
SharedPreferences sharedPreferences =
getActivity().getSharedPreferences("key", 0);
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putBoolean("**switchValue**", aSwitch.isChecked());
editor.apply();
boolean showNotifications =
editor.getBoolean("**switchValue**",false);
问题内容: 你们可以帮我将以下代码翻译成Swift吗? (或者我是否必须使用此链接: _itms://itunes.apple.com/app/id839686104_ ?) 提前致谢! 问题答案: 这里。但我强烈建议您学习Swift的基础知识!
主要内容:创建切换按钮,切换按钮组,ToggleButton行为,样式切换按钮切换按钮具有两种状态:选择或未选择。 我们通常将两个或多个切换按钮组合成一个组,并允许用户只选择一个按钮或不选择。 创建切换按钮 我们可以使用类的三个构造函数创建一个切换按钮。要创建没有任何字幕或图标的切换按钮。 要创建带有文字说明的切换按钮 要创建带有文字说明和图标的切换按钮。 方法可以将文本设置为,以及方法可以将图像安装到。 切换按钮组 切换组不强制选择至少一个按钮。单击所选的切换按钮可取消选
我想做的是禁用一个按钮,当我启用另一个按钮时(因此最多可以激活一个按钮),但我对JS的了解非常基础。任何提示都将不胜感激。 Lorem ipsum dolor sit amet,concetetur adipiscing elit。车辆三体间前庭。前庭等扫描电镜。Ut venenatis sagittis孕妇。Nam enim tortor,lacinia pretium dolor sit am
问题内容: 应用程序可以在四种不同的设备上正常运行。但是客户端在 Xperia z2 上的闪光按钮ON / OFF上面临崩溃。 主要活动 相机预览 崩溃报告。 问题答案: 应muku的要求。我自己回答。用于切换闪光灯 FlashOn和FlashOff方法是
问题内容: 我想使用CSS在html中创建一个切换按钮。我想要它,以便当您单击它时,它保持推入状态,而不是再次单击时它弹出。 如果没有办法仅使用CSS。有没有办法使用jQuery? 问题答案: 良好的语义方式是使用复选框,然后如果未选中,则以不同的方式设置其样式。但是没有好的方法可以做到这一点。您必须添加额外的跨度,额外的div,并且要真正看起来不错,请添加一些javascript。 因此最好的解
问题内容: 我想要一个带有2个按钮(最终还有更多个按钮)的JFrame应用程序,我可以使用它们在多个重复动作之间进行切换,为简便起见,我现在仅使用控制台打印,尽管稍后可能会调用一个方法。这是JFrame的框架: 我尝试了以下方法: 但是当我单击一个按钮后,它一直停留在该打印件上,我什至无法再与这些按钮进行交互。我是否缺少某些东西,还是需要一个完全不同的结构?我已经检查了很多不同的程序,但是它们太复