Android Open Source - SeeKampf Island Details Fragment






From Project

Back to project page SeeKampf.

License

The source code is released under:

GNU General Public License

If you think the Android project SeeKampf listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package net.avedo.seekampf.fragments;
//from  w  w  w.  j  a va2s .c  o  m
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import net.avedo.seekampf.R;
import net.avedo.seekampf.models.Island;
import net.avedo.seekampf.utils.Constants;

public class IslandDetailsFragment extends RestDetailsFragment<Island> {
  public static final String TAG = "IslandDetails";

  @Override
  protected String fetchServiceUrl() {
    return Constants.API_URL + "?server="
    + settings.getString(res.getString(R.string.prefs_server_key), "1")
    + "&typ=inseln&id=" + this.serviceObjectId;
  }

  @Override
  protected String fetchServiceTag() {
    return IslandDetailsFragment.TAG;
  }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Load the message details layout.
        return inflater.inflate(R.layout.island_details, container, false);
    }

  @Override
  protected void createView() {
        // Fetch the main layout.
        View mainView = this.getView();

        // Fetch the island name field ...
        TextView islandName = (TextView) mainView.findViewById(R.id.islandName);

        // ... and initialize it.
        islandName.setText(this.serviceObject.getInselname() + " (" + this.serviceObject.getKoordinaten() + ")");

        // Fetch the island points field ...
        TextView islandPoints = (TextView) mainView.findViewById(R.id.islandPoints);

        // ... and initialize it.+
        islandPoints.setText("" + this.serviceObject.getPunkte());
  }
}




Java Source Code List

net.avedo.seekampf.BuildConfig.java
net.avedo.seekampf.core.ChangeLog.java
net.avedo.seekampf.core.CustomAdapter.java
net.avedo.seekampf.core.MainActivity.java
net.avedo.seekampf.core.OceanView.java
net.avedo.seekampf.core.OverScrollerCompat.java
net.avedo.seekampf.core.RestDetailsActivity.java
net.avedo.seekampf.core.ScaleGestureDetectorCompat.java
net.avedo.seekampf.core.VolleyActivity.java
net.avedo.seekampf.core.Zoomer.java
net.avedo.seekampf.fragments.AboutFragment.java
net.avedo.seekampf.fragments.AllianceListFragment.java
net.avedo.seekampf.fragments.AuctionListFragment.java
net.avedo.seekampf.fragments.HomeDetailsFragment.java
net.avedo.seekampf.fragments.HomeFragment.java
net.avedo.seekampf.fragments.IslandDetailsFragment.java
net.avedo.seekampf.fragments.IslandListFragment.java
net.avedo.seekampf.fragments.MessageDetailsFragment.java
net.avedo.seekampf.fragments.MessageListFragment.java
net.avedo.seekampf.fragments.OceanFragment.java
net.avedo.seekampf.fragments.PlayerListFragment.java
net.avedo.seekampf.fragments.RestDetailsFragment.java
net.avedo.seekampf.fragments.RestListFragment.java
net.avedo.seekampf.fragments.SettingsFragment.java
net.avedo.seekampf.models.Alliance.java
net.avedo.seekampf.models.Auction.java
net.avedo.seekampf.models.BaseModel.java
net.avedo.seekampf.models.Island.java
net.avedo.seekampf.models.Message.java
net.avedo.seekampf.models.Player.java
net.avedo.seekampf.utils.AuthGsonRequest.java
net.avedo.seekampf.utils.Constants.java
net.avedo.seekampf.utils.Interfaces.java
net.avedo.seekampf.utils.VolleyErrorHelper.java