-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
647 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
app/src/main/java/com/luckyaf/strongbox/activity/SettingsActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.luckyaf.strongbox.activity; | ||
|
||
import android.view.View; | ||
|
||
import com.luckyaf.strongbox.activity.base.BaseActivity; | ||
|
||
/** | ||
* 类描述: | ||
* | ||
* @auhter Created by luckyAF on 16/5/11 | ||
*/ | ||
public class SettingsActivity extends BaseActivity { | ||
|
||
@Override | ||
protected void initToolbar() { | ||
|
||
} | ||
|
||
@Override | ||
protected boolean isApplyTranslucency() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public void onClick(View v) { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
app/src/main/java/com/luckyaf/strongbox/fragment/settings/BaseSettingsFragment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.luckyaf.strongbox.fragment.settings; | ||
|
||
import android.preference.Preference; | ||
import android.preference.PreferenceFragment; | ||
import android.preference.PreferenceScreen; | ||
|
||
/** | ||
* 类描述: | ||
* | ||
* @auhter Created by luckyAF on 16/5/11 | ||
*/ | ||
public class BaseSettingsFragment extends PreferenceFragment { | ||
@Override | ||
public boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference) { | ||
|
||
return super.onPreferenceTreeClick(preferenceScreen,preference); | ||
} | ||
} |
Oops, something went wrong.