-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refering to issue#2 At the Speaker Deck -> Talks by Arnav Gupta all the features are not completely visible. Like half of the page is not visible(grey part is showing). #83
Comments
Attempting to reproduce this on an emulator now and will report back. |
How do you get to this screen? I've had no luck in finding it.. |
Which screen is this? Same question 😮 |
I found this 15 days before in the app and it was there in the Arnav Gupta
page -> Speaker deck -> Talks by Arnav Gupta.
…On Wed, May 23, 2018 at 3:25 PM, Arnav Gupta ***@***.***> wrote:
Which screen is this? Same question 😮
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#83 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWKHaeF8FIWW5v5a0qszkN9iEaBatTVLks5t1TIjgaJpZM4UGKY->
.
|
I'm not sure what you mean by the Arnav Gupta page, the closest I can think of is the About page which shows you Arnav Gupta at the top of contributors, but even then I'm unsure how you get to Speaker Deck or talks by Arnav. |
After that there is speaker deck and then talks by Arnav Gupta. There I got
this.
…On 23 May 2018 5:24 p.m., "Devin Leaman" ***@***.***> wrote:
I'm not sure what you mean by the *Arnav Gupta page*, the closest I can
think of is the About page which shows you *Arnav Gupta* at the top of
contributors, but even then I'm unsure how you get to *Speaker Deck* or
talks by Arnav.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#83 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWKHaYuKscIwCSAE3s8t0xAaxHfSxKXHks5t1U3zgaJpZM4UGKY->
.
|
When you say "After that", what do you mean? What button do you press in order to get to the Speaker Deck? The only two actions I can see on the About page is to either launch the default browser to the app repository on GitHub, or to the GitHub Contributors page for the app: public void openPage(View view)
{
String url = "";
switch (view.getId())
{
case R.id.relative_layout_github:
url = "https://github.com/coding-blocks/DigitalOceanApp";
break;
case R.id.relative_layout_see_all_contributors:
url = "https://github.com/coding-blocks/DigitalOceanApp/graphs/contributors?from=2016-11-20&to=2017-06-30&type=c";
break;
}
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
} This function is called when clicking on the RelativeLayout that contains the first card, or when clicking on the See All Contributors text at the very bottom. Other than that, I see no way to get to a Speaker Deck page, so the more specific you can be about how you got to this page the better. |
The text was updated successfully, but these errors were encountered: