|
Post by Bismarck Jr on Jan 22, 2017 20:17:43 GMT
If you want to make a toast message (grey textbox on startup) and already have the tool to edit a manifest file, this is the needed code:
Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_LONG).show();
or
Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_SHORT).show();
|
|
|
Post by Deleted on Jan 22, 2017 20:33:05 GMT
If you want to make a toast message (grey textbox on startup) and already have the tool to edit a manifest file, this is the needed code: Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_LONG).show(); or Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_SHORT).show(); We can use apk editor pro for this right?
|
|
|
Post by Bismarck Jr on Jan 22, 2017 20:35:59 GMT
If you want to make a toast message (grey textbox on startup) and already have the tool to edit a manifest file, this is the needed code: Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_LONG).show(); or Toast.makeText(getActivity(), "This is my Toast message!", Toast.LENGTH_SHORT).show(); We can use apk editor pro for this right? Yes. Though I have not found the proper key for the manifest code that is used to develop the toasts. That might take me a couple hours to get.
|
|
|
Post by Bismarck Jr on Jan 24, 2017 20:43:56 GMT
The string that has keyboardHidden|orientation|screenSize
is what it needs to be posted under. Any key should work
|
|
|
Post by Deleted on Jan 25, 2017 2:12:03 GMT
The string that has keyboardHidden|orientation|screenSize is what it needs to be posted under. Any key should work Apk editor pro post a picture of an example
|
|
|
Post by Bismarck Jr on Jan 25, 2017 2:32:20 GMT
The string that has keyboardHidden|orientation|screenSize is what it needs to be posted under. Any key should work Apk editor pro post a picture of an example Will do tomorrow
|
|