Kore/app/src/main/java/org/xbmc/kore/ui/hosts/AddHostFragmentFinish.java

105 lines
3.6 KiB
Java

/*
* Copyright 2015 Synced Synapse. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.xbmc.kore.ui.hosts;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.Html;
import android.text.method.LinkMovementMethod;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import org.xbmc.kore.R;
import org.xbmc.kore.service.LibrarySyncService;
/**
* Fragment that presents the welcome message
*/
public class AddHostFragmentFinish extends Fragment {
/**
* Callback interface to communicate with the encolsing activity
*/
public interface AddHostFinishListener {
public void onAddHostFinish();
}
private AddHostFinishListener listener;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_add_host_finish, container, false);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
if (getView() == null)
return;
TextView message = (TextView)getView().findViewById(R.id.done_message);
message.setText(Html.fromHtml(getString(R.string.wizard_done_message)));
message.setMovementMethod(LinkMovementMethod.getInstance());
// Finish button
Button next = (Button)getView().findViewById(R.id.next);
next.setText(R.string.finish);
next.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
listener.onAddHostFinish();
}
});
// Previous button
Button previous = (Button)getView().findViewById(R.id.previous);
previous.setText(null);
previous.setEnabled(false);
// Start the syncing process
Intent syncIntent = new Intent(this.getActivity(), LibrarySyncService.class);
syncIntent.putExtra(LibrarySyncService.SYNC_ALL_MOVIES, true);
syncIntent.putExtra(LibrarySyncService.SYNC_ALL_TVSHOWS, true);
syncIntent.putExtra(LibrarySyncService.SYNC_ALL_MUSIC, true);
syncIntent.putExtra(LibrarySyncService.SYNC_ALL_MUSIC_VIDEOS, true);
getActivity().startService(syncIntent);
// InputMethodManager imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
// imm.hideSoftInputFromWindow(getActivity()
// .getWindow()
// .getDecorView()
// .getRootView()
// .getWindowToken(), 0);
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
try {
listener = (AddHostFinishListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString() + " must implement AddHostFinishListener interface.");
}
}
}