簡體   English   中英

如何在Android中使用工具欄創建設置

[英]How to create Settings with toolbar in android

我有一個設置首選項屏幕,它有一個ListPreference和一個CheckBoxPreference。 選擇ListPreference的項目時,我想更改應用程序的日期格式。 另外,我想通過CheckBoxPreference在狀態欄上顯示/隱藏通知。 誰能告訴我要實現這一目標需要做什么。

另外,如何將工具欄添加到首選項屏幕? 我被困在這里。 請幫忙。 提前致謝。 我被困在這里。 請幫忙。 提前致謝。

MainActivity.java

public void setCurrentDateOnView() {
    String dateFormat = "dd - MM - yyyy";
    SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormat, Locale.US);
    tv_Current_Date.setText(simpleDateFormat.format(calendar_now.getTime()));
    String short_weekday = new DateFormatSymbols().getShortWeekdays()[day_of_current_week];
    tv_Current_weekday.setText(short_weekday);
    til_Current_Date.setError(null);
}

public boolean onOptionsItemSelected(MenuItem item) {
    switch (item.getItemId()) {

        case R.id.action_settings:
            Intent intent_settings = new Intent(this, SettingsActivity.class);
            startActivity(intent_settings);
            Toast.makeText(this, "You have clicked on settings action menu.", Toast.LENGTH_SHORT).show();
            break;

    }
    return super.onOptionsItemSelected(item);
}

SettingsActivity.java

public class SettingsActivity extends PreferenceActivity
    implements SharedPreferences.OnSharedPreferenceChangeListener {

NotificationManager mNotifyManager;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //Display the fragment as the main content.
    getFragmentManager().beginTransaction()
            .replace(android.R.id.content, new SettingsFragment())
            .commit();
    PreferenceManager.setDefaultValues(this, R.xml.preferences, false);

    SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);

    boolean notifyEnabled = sharedPreferences.getBoolean("pref_cb_notification", true);
    mNotifyManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
    if (notifyEnabled) {
        //Show notification
        showNotification();
    }
    else {
        //Hide notification
        hideNotification();
    }
}

@Override
public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {

        boolean isChecked = sharedPreferences.getBoolean("pref_cb_notification", false);
        if (isChecked) {
            //Show notification
            showNotification();
        }
        else {
            //Hide notification
            hideNotification();
        }

}

public static class SettingsFragment extends PreferenceFragment implements SharedPreferences.OnSharedPreferenceChangeListener{

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        //Load the preferences from an XML resource
        addPreferencesFromResource(R.xml.preferences);
    }

    @Override
    public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {

    }
}

//Method to show notification
public void showNotification() {
    NotificationCompat.Builder mBuilder = (NotificationCompat.Builder)
            new NotificationCompat.Builder(SettingsActivity.this)
                    .setSmallIcon(R.drawable.ic_notifications_white_24dp)
                    .setContentTitle("My Application")
                    .setSubText("Tap to start");
    Intent resultIntent = new Intent(SettingsActivity.this, MainActivity.class);
    PendingIntent resultPendingIntent = PendingIntent
            .getActivity(SettingsActivity.this, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    //System.currentTimeMillis();
    mBuilder.setContentIntent(resultPendingIntent);
    Notification notification = mBuilder.build();
    notification.flags |= Notification.FLAG_NO_CLEAR | Notification.FLAG_ONGOING_EVENT;
    //notification.flags |= Notification.FLAG_AUTO_CANCEL;
    mNotifyManager.notify(1, notification);
}

//Method to hide notification
public void hideNotification() {
    mNotifyManager.cancel(1);
}

}

設定圖片

要添加工具欄,您只需要在活動的布局文件中使用協調器布局即可。 偏好活動與其他活動一樣具有簡單的布局,您只需在容器內填充偏好片段。

將appcompact設計支持庫添加到build.gradle

compile 'com.android.support:appcompat-v7:21.0.3'

將toolbar.xml添加到您的布局文件夾

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
 xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/ColorPrimary"
    android:elevation="4dp"
    >
</android.support.v7.widget.Toolbar>

然后在您的activity.xml中包含工具欄

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context=".MainActivity">

    <include
        android:id="@+id/tool_bar"
        layout="@layout/tool_bar"
        ></include>

    <TextView
        android:layout_below="@+id/tool_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/TextDimTop"
        android:text="@string/hello_world" />

</RelativeLayout>

那么您需要在活動中進行設置

toolbar = (Toolbar) findViewById(R.id.tool_bar); 
setSupportActionBar(toolbar); 

然后使用onCreateOptionsMenu可以在其上添加設置菜單。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM