android:orientation="horizontal">\r
\r
<TextView\r
- android:id="@+id/last_size"\r
+ android:id="@+id/file_size"\r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content"\r
android:text="Size MB"\r
android:textSize="@dimen/two_line_secondary_text_size"/>\r
\r
<TextView\r
- android:id="@+id/file_mod"\r
+ android:id="@+id/last_mod"\r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content"\r
android:gravity="right"\r
\r
switch (viewType){\r
case LIST_ITEM:\r
- TextView fileSizeV = (TextView) view.findViewById(R.id.last_size);\r
+ TextView fileSizeV = (TextView) view.findViewById(R.id.file_size);\r
TextView fileSizeSeparatorV = (TextView) view.findViewById(R.id.file_separator);\r
- TextView lastModV = (TextView) view.findViewById(R.id.file_mod);\r
+ TextView lastModV = (TextView) view.findViewById(R.id.last_mod);\r
\r
\r
lastModV.setVisibility(View.VISIBLE);\r
}
fileIcon.setTag(file.hashCode());
- TextView fileSizeV = (TextView) view.findViewById(R.id.last_size);
+ TextView fileSizeV = (TextView) view.findViewById(R.id.file_size);
TextView fileSizeSeparatorV = (TextView) view.findViewById(R.id.file_separator);
- TextView lastModV = (TextView) view.findViewById(R.id.file_mod);
+ TextView lastModV = (TextView) view.findViewById(R.id.last_mod);
ImageView checkBoxV = (ImageView) view.findViewById(R.id.custom_checkbox);
if (!file.isDirectory()) {
fileSizeSeparatorV.setVisibility(View.VISIBLE);