DigitalOceanApp icon indicating copy to clipboard operation
DigitalOceanApp copied to clipboard

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).

Open Yagya-Chaudhary opened this issue 7 years ago • 7 comments

40060163-9b3f93b8-5873-11e8-935e-db6fe6d0e1cb

Yagya-Chaudhary avatar May 20 '18 17:05 Yagya-Chaudhary

Attempting to reproduce this on an emulator now and will report back.

4lch4 avatar May 23 '18 07:05 4lch4

How do you get to this screen? I've had no luck in finding it..

4lch4 avatar May 23 '18 07:05 4lch4

Which screen is this? Same question 😮

championswimmer avatar May 23 '18 09:05 championswimmer

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 [email protected] 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 https://github.com/coding-blocks/DigitalOceanApp/issues/83#issuecomment-391290854, or mute the thread https://github.com/notifications/unsubscribe-auth/AWKHaeF8FIWW5v5a0qszkN9iEaBatTVLks5t1TIjgaJpZM4UGKY- .

Yagya-Chaudhary avatar May 23 '18 10:05 Yagya-Chaudhary

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.

4lch4 avatar May 23 '18 11:05 4lch4

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" [email protected] 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 https://github.com/coding-blocks/DigitalOceanApp/issues/83#issuecomment-391319709, or mute the thread https://github.com/notifications/unsubscribe-auth/AWKHaYuKscIwCSAE3s8t0xAaxHfSxKXHks5t1U3zgaJpZM4UGKY- .

Yagya-Chaudhary avatar May 23 '18 15:05 Yagya-Chaudhary

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.

4lch4 avatar May 24 '18 01:05 4lch4