mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2025-12-08 19:05:54 +00:00
Previously, the section where "Actions" were, was titled "Gists" for some reason. This fixes that.
26 lines
553 B
Java
26 lines
553 B
Java
package com.fastaccess.ui.base;
|
|
|
|
import android.support.annotation.Nullable;
|
|
import android.widget.TextView;
|
|
|
|
import com.fastaccess.R;
|
|
|
|
import net.grandcentrix.thirtyinch.TiActivity;
|
|
import net.grandcentrix.thirtyinch.TiPresenter;
|
|
import net.grandcentrix.thirtyinch.TiView;
|
|
|
|
import butterknife.BindView;
|
|
|
|
/**
|
|
* Created by thermatk on 12.04.17.
|
|
*/
|
|
|
|
public abstract class AdActivity<V extends TiView,P extends TiPresenter<V>> extends TiActivity<P, V> {
|
|
|
|
@Nullable @BindView(R.id.adView) TextView adView;
|
|
|
|
protected void showHideAds() {
|
|
|
|
}
|
|
}
|