<ProgressBar android:id="@+id/status_progress"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_below="@id/status_text"
- android:progressDrawable="@android:drawable/progress_horizontal"
- android:indeterminate="false" android:indeterminateOnly="false" />
+ android:indeterminate="false" android:indeterminateOnly="false"
+ style="?android:attr/progressBarStyleHorizontal"/>
</RelativeLayout>
*/\r
package eu.alefzero.owncloud.ui.adapter;\r
\r
+import java.net.URLDecoder;\r
import java.util.Vector;\r
\r
import eu.alefzero.owncloud.DisplayUtils;\r
TextView fileName = (TextView) view.findViewById(R.id.Filename);\r
String name = file.getFileName();\r
\r
- fileName.setText(DisplayUtils.HtmlDecode(name));\r
+ fileName.setText(URLDecoder.decode(name));\r
ImageView fileIcon = (ImageView) view.findViewById(R.id.imageView1);\r
if (!file.getMimetype().equals("DIR")) {\r
fileIcon.setImageResource(R.drawable.file);\r