Updated attributes of EditText
This commit is contained in:
parent
278fbc224c
commit
8dc5c04aa2
|
@ -11,7 +11,9 @@
|
|||
/>
|
||||
<EditText android:id="@+id/etxtFeedurl"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"/>
|
||||
android:layout_height="wrap_content"
|
||||
android:autoText="false"
|
||||
android:capitalize="none"/>
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
|
@ -35,6 +35,10 @@ public class DownloadObserver extends AsyncTask<FeedFile, DownloadObserver.Downl
|
|||
this.context = context;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onCancelled(Boolean result) {
|
||||
Log.d(TAG, "Task was cancelled.");
|
||||
}
|
||||
|
||||
protected Boolean doInBackground(FeedFile... files) {
|
||||
Log.d(TAG, "Background Task started.");
|
||||
|
|
Loading…
Reference in New Issue