-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Date型やRealmList<T>型のカラムの内容を表示 #12
base: master
Are you sure you want to change the base?
Conversation
@@ -164,6 +170,11 @@ public ProviderBuilder withDescendingOrder() { | |||
return this; | |||
} | |||
|
|||
public ProviderBuilder withDateFormat(String dateFormat) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Stetho.initialize(
Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(RealmInspectorModulesProvider
.builder(this)
.withDateFormat("yyyy/MM/dd HH:mm")
.build())
.build());
のように、Stetho、Stetho_realmの初期化の際にbuilderで日時フォーマットを指定できるようにいたしました。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
デフォルトのフォーマットは
https://github.com/uPhyca/stetho-realm/pull/12/files#diff-4899c0da9ce98c58ab8c088a8f81d344R42
にあるように、yyyy-MM-dd HH:mm:ss z
としております。
あー、すみません。PRに気づかずに似たような機能を実装してしまいました... いただいたPRのほうがよさそうなので、現状のコードとマージしてみますね |
いえいえ、二度手間になってしまい申し訳ありません。 |
はじめまして!
ライブラリ大変便利に使用させていただいております。
現在RealmObjectのfieldにDate型とRealmList型を使用しているので、それらの値が表示できるように修正してみました。
よろしければご確認ください。
やったこと
動作確認環境