coding-blocks / DigitalOceanApp

Admin Console for Digital Ocean
GNU General Public License v3.0
56 stars 75 forks source link

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

Open Yagya-Chaudhary opened 6 years ago

Yagya-Chaudhary commented 6 years ago

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

4lch4 commented 6 years ago

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

4lch4 commented 6 years ago

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

championswimmer commented 6 years ago

Which screen is this? Same question 😮

Yagya-Chaudhary commented 6 years ago

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 notifications@github.com 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- .

4lch4 commented 6 years ago

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.

Yagya-Chaudhary commented 6 years ago

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" notifications@github.com 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- .

4lch4 commented 6 years ago

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.