| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package com.cygnusa.hyperm;
- import android.annotation.SuppressLint;
- import android.graphics.PorterDuff;
- import android.graphics.drawable.Drawable;
- import android.os.Bundle;
- import android.util.Log;
- import android.view.MenuItem;
- import android.view.View;
- import android.widget.ImageView;
- import android.widget.TextView;
- import androidx.appcompat.app.AppCompatActivity;
- import androidx.appcompat.widget.Toolbar;
- import com.bumptech.glide.Glide;
- import com.bumptech.glide.load.engine.DiskCacheStrategy;
- import com.bumptech.glide.request.RequestOptions;
- import com.cygnusa.hyperm.util.ApiService;
- import com.cygnusa.hyperm.util.MainApplication;
- import com.cygnusa.hyperm.wrappers.Bulletin;
- import com.cygnusa.hyperm.wrappers.CommonResponse;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.Date;
- import retrofit2.Call;
- import retrofit2.Callback;
- import retrofit2.Response;
- public class BulletinDetails extends AppCompatActivity {
- public static Bulletin CONTENT = new Bulletin();
- TextView title, desc, publishedDate, headtitle;
- ImageView image;
- private String bulletinId;
- private ApiService apiService;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_bulletin_details);
- setupWindowAnimations();
- headtitle = findViewById(R.id.title);
- title = findViewById(R.id.bulletinTitle);
- desc = findViewById(R.id.bulletinDescription);
- publishedDate = findViewById(R.id.publishedDate);
- image = findViewById(R.id.myImage);
- // mImageLangSelection = findViewById(R.id.imgLanguage);
- publishedDate.setText("Published On: " + dateFormate(CONTENT.getPublished_date()));
- title.setText(CONTENT.getBulletin_title());
- headtitle.setText("Bulletin");
- desc.setText(CONTENT.getBulletin_desc());
- Toolbar toolbar = findViewById(R.id.toolbar);
- setSupportActionBar(toolbar);
- toolbar.setNavigationIcon(R.mipmap.back);
- toolbar.setContentInsetStartWithNavigation(0);
- toolbar.setTitle("");
- getSupportActionBar().setTitle("");
- getSupportActionBar().setDisplayHomeAsUpEnabled(true);
- getSupportActionBar().setDisplayShowHomeEnabled(true);
- @SuppressLint("PrivateResource")
- Drawable backArrow = getResources().getDrawable(R.drawable.abc_ic_ab_back_material);
- backArrow.setColorFilter(getResources().getColor(R.color.btn_bg_color), PorterDuff.Mode.SRC_ATOP);
- getSupportActionBar().setHomeAsUpIndicator(backArrow);
- apiService = ((MainApplication) getApplication()).getClient();
- Bundle bundle = getIntent().getExtras();
- if (bundle != null) {
- bulletinId = bundle.getString("bulletinId");
- }
- sendBulletinIdUpdate();
- findViewById(R.id.helpIcon).setOnClickListener(new View.OnClickListener() {
- @Override
- public void onClick(View v) {
- }
- });
- Glide.with(this).load(CONTENT.getImage_url())
- .thumbnail(Glide.with(this).load(R.drawable.gif_loader))
- .apply(new RequestOptions().diskCacheStrategy(DiskCacheStrategy.ALL).centerCrop()
- .placeholder(R.drawable.placeholder)).into(image);
- }
- private void sendBulletinIdUpdate() {
- apiService.sendBulletinUpdate(bulletinId).enqueue(new Callback<CommonResponse>() {
- @Override
- public void onResponse(Call<CommonResponse> call, Response<CommonResponse> response) {
- if (response.body() != null) {
- Log.e("BulletinResponse", response.body().getMessage());
- }
- }
- @Override
- public void onFailure(Call<CommonResponse> call, Throwable t) {
- if (t.getMessage() != null)
- Log.e("BulletinFailedResponse", t.getMessage());
- }
- });
- }
- private void setupWindowAnimations() {
- this.overridePendingTransition(R.anim.animation_enter,
- R.anim.animation_leave);
- }
- @Override
- public boolean onOptionsItemSelected(MenuItem item) {
- if (item.getItemId() == android.R.id.home) {
- confirmClose();
- }
- return super.onOptionsItemSelected(item);
- }
- private void confirmClose() {
- finish();
- BulletinDetails.this.overridePendingTransition(R.anim.animation_f_enter,
- R.anim.animation_f_leave);
- }
- @Override
- public void onBackPressed() {
- super.onBackPressed();
- this.overridePendingTransition(R.anim.animation_f_enter,
- R.anim.animation_f_leave);
- }
- public String dateFormate(String dte) {
- SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
- Date newDate = null;
- try {
- newDate = format.parse(dte);
- } catch (ParseException e) {
- e.printStackTrace();
- }
- format = new SimpleDateFormat("dd-MMM-yyyy");
- String date = format.format(newDate);
- return date;
- }
- }
|