Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How should I write three dots?

Tags:

Simple question: I want to set a TextView and in that I want to have three dots (Ellipsis). Like

Read more... <-- Now I'm sure I shouldn't just write ... into the String. How should I write these three dots?

like image 674
Musterknabe Avatar asked Nov 15 '13 09:11

Musterknabe


People also ask

What does 3 dots mean in writing?

They signal either that something has been omitted from quoted text, or that a speaker or writer has paused or trailed off in speech or thought. That's the basics.

How do you use three periods in a sentence?

An ellipsis is a set of three periods ( . . . ) indicating an omission. Each period should have a single space on either side, except when adjacent to a quotation mark, in which case there should be no space.

How do you use ellipses examples?

Use an ellipsis to show an omission, or leaving out, of a word or words in a quote. Use ellipses to shorten the quote without changing the meaning. For example: "After school I went to her house, which was a few blocks away, and then came home."


2 Answers

You can use the UTF-8 character "Horizonal ellipsis" (U+2026), "\u2026":

http://www.fileformat.info/info/unicode/char/2026/index.htm

like image 32
Erik A. Brandstadmoen Avatar answered Oct 13 '22 01:10

Erik A. Brandstadmoen


Write "\u2026" in your String literal. See http://www.fileformat.info/info/unicode/char/2026/index.htm

like image 75
Dawood ibn Kareem Avatar answered Oct 13 '22 01:10

Dawood ibn Kareem