Lots of styling cleanup

Download activity last thing before another release
This commit is contained in:
Bradlee Speice
2014-12-25 16:50:59 -05:00
parent f466f9b017
commit f889b61b9c
7 changed files with 54 additions and 23 deletions

View File

@ -5,6 +5,7 @@ import android.os.Bundle
import org.bspeice.minimalbible.R
import android.support.v7.widget.Toolbar
import org.bspeice.minimalbible.activity.BaseActivity
import android.widget.LinearLayout
/**
* Created by bspeice on 12/1/14.
@ -20,5 +21,8 @@ class MinimalBibleSettings() : PreferenceActivity() {
val toolbar = findViewById(R.id.toolbar) as Toolbar
toolbar.setTitle(R.string.action_settings)
val root = findViewById(R.id.container) as LinearLayout
BaseActivity.setupInsets(this, root)
}
}