replace top margin with padding at the destination directory picker

This commit is contained in:
tibbi 2017-07-01 11:46:40 +02:00
parent 61fb25332d
commit 8f628e33a4
2 changed files with 3 additions and 4 deletions

View File

@ -21,10 +21,9 @@ import kotlinx.android.synthetic.main.dialog_directory_picker.view.*
class PickDirectoryDialog(val activity: SimpleActivity, val sourcePath: String, val callback: (path: String) -> Unit) {
var dialog: AlertDialog
var shownDirectories: ArrayList<Directory> = ArrayList()
var view: View
var view: View = LayoutInflater.from(activity).inflate(R.layout.dialog_directory_picker, null)
init {
view = LayoutInflater.from(activity).inflate(R.layout.dialog_directory_picker, null)
(view.directories_grid.layoutManager as GridLayoutManager).apply {
orientation = if (activity.config.scrollHorizontally) GridLayoutManager.HORIZONTAL else GridLayoutManager.VERTICAL
spanCount = activity.config.dirColumnCnt

View File

@ -4,13 +4,13 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/directories_grid_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyScalableRecyclerView
android:id="@+id/directories_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/activity_margin"
android:scrollbars="none"
app:layoutManager="android.support.v7.widget.GridLayoutManager"
app:spanCount="@integer/directory_columns_vertical_scroll"/>