Crafting
- Apps & Games
- 3 Replies
It reminds me of Final Fantasy, the movie, along with Resident Evil...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
can't be that famous as i have never heard of Cube ACR......LMAO!!!!!!!!A very good spam app Android users can try out is Nize. Its developer is Cube Apps, the team behind the famous Cube ACR app.
Look up. Click on the My Talking Tom. It will take you to another forum link. Select the Google play link and it should take you to the Play store.where is the download link?
Thank you!)I created a channel for your app. Good luck!!
https://androidforums.com/apps/bug-dolls-horror-game.20245/
public class AndroidModel {
private String name;
private String title;
private Drawable icon;
Intent androidLaunch;
public AndroidModel(String name, String title, Drawable _icon, Intent _launch) {
this.name = name;
this.title= title;
this.icon = _icon;
this.androidLaunch = _launch;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void setTitle(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
public void setIcon(Drawable icon) {
this.icon = icon;
}
public Drawable getIcon() {return icon;}
public void setLaunch(Drawable icon) {
this.androidLaunch = androidLaunch;
}
public Intent getLaunch() {return androidLaunch;}
}
class AppInfo {
String appname = "";
String pname = "";
Drawable icon;
String Source = "";
Intent Launching;
}
AppInfo newInfo = new AppInfo();
newInfo.appname = activityInfo.applicationInfo.loadLabel(getContext().getPackageManager()).toString();
newInfo.pname = activityInfo.packageName;
newInfo.Source = activityInfo.applicationInfo.sourceDir;
newInfo.Launching = pm.getLaunchIntentForPackage(activityInfo.packageName);
newInfo.icon = activityInfo.applicationInfo.loadIcon(getContext().getPackageManager());
androidList.add(
new AndroidModel(newInfo.appname, newInfo.appname, newInfo.icon, newInfo.Launching)
);
@SuppressLint("UseCompatLoadingForDrawables")
@Override
public void onBindViewHolder(AndroidAdapter.MyViewHolder holder, int position) {
ImageView imageView = holder.mPhotoImageView;
if (!mAndroidList.get(position).getName().isEmpty()) {
Glide.with(mContext)
.asBitmap()
.load(mAndroidList.get(position).getIcon())
.diskCacheStrategy(DiskCacheStrategy.ALL)
.skipMemoryCache(true)
.priority(Priority.HIGH)
.signature(new ObjectKey(String.valueOf(System.currentTimeMillis())))
.apply(new RequestOptions().override(150, 150))
.into(imageView);
holder.mTitle.setText(mAndroidList.get(position).getName());
}
}
