Questions tagged [android-sliding]

183 questions
2
votes
0 answers

Android SlidingUp Panel scrolllview not adjusting correctly

WHAT I HAVE DONE I used the following function to resize the size of scrollview (used as a slidinglayout) the second child if slidinglayout is a map fragment. there is a button "select from map" where the sliding view is completely…
2
votes
1 answer

Sliding lock screen

Digging with custom lock to lock and unlock the device, same as Start app, so far I Google and got some question but no luck even I found one similar question this but no hope. Yet I tried and use setOnTouchListener to slide but its glitch and not…
Yog Guru
  • 2,074
  • 3
  • 28
  • 47
2
votes
3 answers

How to do sliding menu from right to left

I searching some sliding example, but I still couldn't find for right to left sliding example. Please can any one give sample project for sliding menu from right to left
2
votes
1 answer

Creating jar file for SlidingMenu

Can anyone help me to create jar file of sliding menu project. https://github.com/jfeinstein10/SlidingMenu ? If i add the jar file which is created then im getting exception java.lang.NoClassDefFoundError: com.slidingmenu.lib.R$styleable. I dont…
Nemo
  • 1,059
  • 3
  • 14
  • 31
2
votes
1 answer

Best way to handle multiple swappable Fragments on orientation change

I use a SlidingMenu to display a Side Drawer (instead of tabs). Now, inside the SlidingMenuFragment, there is a ListView with 6 rows, each one being an equivalent of a tab. When the user touches one of the 6 items, the content view should update the…
2
votes
4 answers

Android: How to hide the sliding menu when back button clicked

I am using : https://github.com/iPaulPro/SlidingMenu library to implement Facebook like sliding menu, along with ActionBarSherlock library. The BehindContentView in my case is a ListFragment. 1. Click on an Image to get the behindView (calling…
Archie.bpgc
  • 23,812
  • 38
  • 150
  • 226
1
vote
0 answers

Android: How to implement moving to the next ImageView by doing quick slide vertically? (All Source Codes Provided)

I have about 20 images. I have created buttons of each image and one ImageView. When a button clicked, the corresponding image will set to ImageView with enabled zooming and dragging. Then, replace it upon clicking the other button to move to the…
eros
  • 4,946
  • 18
  • 53
  • 78
1
vote
0 answers

How do I put mutliple SlidingUpPanels on Flutter?

I want to add multiple SlidingUpPanels on my page, but I don't know how to do it. I did some research, but haven't identified a solution. If somebody can help me or give some another alternative I would be very satisfied. This is what I have so far,…
leDecolo
  • 11
  • 1
1
vote
1 answer

How to hide shadow when open SlidingMenu?

In my application for set menu i use SlidingMenu and for this i write below code. In my codes SlidingMenu it's work and not error. But in my code when open SlidingMenu set black shadow to my mainLayout. I want when open SlidingMenu not set shadow to…
user9202821
1
vote
1 answer

How to display all images from a particular internal directory in a Slider view?

I trying to display images from particular directory. Getting length and image names and I could not able to display images. I tried like this. public class MainActivity extends AppCompatActivity implements…
GNK
  • 1,036
  • 2
  • 10
  • 29
1
vote
1 answer

SlidingPanelLayout not work well from right to left in android

I am creating SlidingPanelLayout from right to left for the filter purpose.The panel work fine it come out from right side and does animation but when Animation is stop it directly go to left side full but I want the ratio is 70% means right side…
1
vote
0 answers

Android opening specific tab (Sliding Tab) on user notification click

I have application , which is using google SlidingTabLayout.And each tab titles are different location names and it is database driven.In application i am using gcm push notifcations and before and notifiactions are about different locations,…
1
vote
1 answer

How to make RecyclerView inside ViewPager

I am planning to make a recyclerview inside ViewPager of SlidingTabLayout.. But I keep getting this error E/RecyclerView: No adapter attached; skipping layout I tried the same recyclerview on other project without SlidingTabLayout and it works..…
1
vote
1 answer

how can we slide a hidden layout from the bottom of screen to middle screen in android?

I am new to android i want to design a layout for my that is slide a hidden layout from the bottom of screen to middle screen in android.How can i achieve it please helpme out.Bellow is my sample screen
Sujithrao
  • 789
  • 3
  • 12
  • 27
1
vote
2 answers

how to disable one view of android layout so that click events do not occur?

I have two relative layouts. One is main page and the other is slider menu which is hidden by default. when I open second layout it comes over the main layout, but the problem is. I have some button in slider menu which are clickable. If i click on…