Questions tagged [divider]

357 questions
0
votes
1 answer

How to add dividers to LinearLayoutICS?

Background I'm trying to switch my alternative "App Manager" app from ActionBarSherlock library to the support library Google has created, since it gets more updates (ActionBarSherlock is no longer being developed, link here ) and I think it should…
0
votes
1 answer

ViewList item divider as Progressbar

I would like to add an "ProgressBar" (like the one in Chrome for Android when you load a new webpage) to a List Item which will show the progress in the current lesson. (It's about an app for School, which all schedules). Currently I have…
Wouter0100
  • 430
  • 6
  • 18
0
votes
1 answer

Android: ListView divider is transparent

Hey i have a listview filled with "custom" TextViews (just added a mehtod for convenience) mRootView = inflater.inflate(R.layout.fragment_session_list, container, false); mLV = (ListView)…
H4kor
  • 1,442
  • 9
  • 23
0
votes
1 answer

Android's ListView randomly without separator

I'm removing the divider png's from my app, and replacing it with a simple black line. I thought that android put a simple default divider (1px black) between items, but I have it only in some ListViews... why? If I try to insert an…
Alessio Crestani
  • 1,484
  • 4
  • 16
  • 37
0
votes
2 answers

Android ListView : bad gradient divider

I have a ListView :
user809913
0
votes
1 answer

Add a vertical divider line programmatically

I am able to easily place a horizontal line programmatically. View view2 = new View(this); view2.setBackgroundColor(0xFFC2BEBF); relativelayout.addView(view2, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, 2)); I now cannot find a…
Matt
  • 3,690
  • 14
  • 42
  • 87
0
votes
1 answer

Listview dividers color with HoloEveryWhere

I'm using HoloEveryWhere to get support of the Holo themes on android 2.x and I want to change the default color of my ListView dividers. I did this :
TrtG
  • 2,548
  • 6
  • 24
  • 38
0
votes
3 answers

How to create a series of DIVs using PHP + mySQL?

I'm looking to create a formatted product list from an SQL database. My aim is to have a store on my website with a series of small boxes containing some shorthand information about each product, that when clicked will open a pop-up containing…
0
votes
0 answers

Segment control white line between segmentAtIndex and dividerImage

My question is the following. Actually, I use segment control with images instead of text. So, for images I write this code: [self.segmentedControl setDividerImage:[UIImage imageNamed:@"DividerImageLeft.png"]…
Nikolay
  • 93
  • 3
0
votes
1 answer

How to change Spinner's dividers color?

I Have integratad a Spinner in my application, now I want to change the dividers in the popup that opens when I click on the spinner from white to another color, I have added the following in my styles.xml as suggested here in one of the posts: …
Emil Adz
  • 38,699
  • 35
  • 127
  • 177
0
votes
1 answer

LinearLayout dividers deos not show up using holoeverywhere

I have this xml file that should display a divider between the TextView and the Button. I am using holoeverywhere library . using this code the divide does not show
user4o01
  • 2,628
  • 4
  • 35
  • 54
0
votes
1 answer

Fizzbuzz counters 1-20 and check for divideables and not dividables

So i have a problem with java that when i run the program the console prints out this "12Fizz4BuzzFizz78FizzBuzz11Fizz1314FizzBuzz1617Fizz19Buzz" what i want it to do is , if its dividable with BOTH 3 and 5 then print out fizzbuz if divideable…
user2764700
  • 29
  • 3
  • 3
  • 7
0
votes
3 answers

Getting one too few divisors

This is a program to count the number of divisors for a number, but it is giving one less divisor than there actually is for that number. #include int i = 20; int divisor; int total; int main() { for (divisor = 1; divisor <= i;…
kyle k
  • 4,198
  • 7
  • 29
  • 45
0
votes
1 answer

DISTINCT values with ", " divider in GROUP_CONCAT

GROUP_CONCAT(g_value,", ") This gives me all values with [comma]+[space] divider apple, orange, banana, apple, apple GROUP_CONCAT(DISTINCT g_value) This gives me only distinct values with "," divider without space. apple,orange,banana How to…
Joe Rakhimov
  • 3,734
  • 7
  • 36
  • 91
0
votes
2 answers

Putting Button within divider in css

I wanna implement this idea by css : What is the best approach to do that in CSS ? Thanks very much !! UPDATE I've did this trick before with Headings , More information here : Putting Heading within 2 horizontal lines in CSS But when i tried to…
Khalid Khalil
  • 379
  • 1
  • 5
  • 12