ฉันกำลังพยายามแสดงคำแนะนำเครื่องมือใน Java ซึ่งอาจมีความยาวย่อหน้าหรือไม่ก็ได้ ฉันจะตัดคำแนะนำเครื่องมือแบบยาวได้อย่างไร
ฉันกำลังพยายามแสดงคำแนะนำเครื่องมือใน Java ซึ่งอาจมีความยาวย่อหน้าหรือไม่ก็ได้ ฉันจะตัดคำแนะนำเครื่องมือแบบยาวได้อย่างไร
คำตอบ:
หากคุณรวมคำแนะนำเครื่องมือ<html>
และ</html>
แท็กคุณสามารถแบ่งบรรทัดด้วย<br>
แท็กได้ ดูhttp://www.jguru.com/faq/view.jsp?EID=10653สำหรับตัวอย่างและการสนทนา
หรือคุณสามารถใช้คลาส JMultiLineToolTip ที่สามารถพบได้หลายแห่งในเน็ตรวมถึง https://github.com/ls-cwi/yoshiko-app/blob/master/src/main/java/com/yoshiko/internal/ ดู / JMultiLineToolTip.java
ข้อความคำแนะนำเครื่องมือที่ขึ้นต้นด้วย " <html>
" จะถือว่าเป็น HTML แน่นอนว่าอาจเป็น HTML ที่กว้างมาก
คุณสามารถแทนที่JComponent.createTooltipเพื่อแทนที่คำแนะนำเครื่องมือด้วยส่วนประกอบของคุณเองซึ่งสามารถแสดงสิ่งที่คุณชอบได้
ฉันรู้ว่าอันนี้ค่อนข้างเก่า แต่ฉันพบวิธีแก้ปัญหาที่ค่อนข้างง่ายโดยใช้โค้ด HTML!
เพียงใช้ย่อหน้า HTML ที่มีความกว้างคงที่:
setToolTipText("<html><p width=\"500\">" +value+"</p></html>");
ใช้คำแนะนำเครื่องมือ HTML และแบ่งบรรทัดของคุณด้วยตนเอง (โทเค็นคำง่ายๆที่มีความยาวบรรทัดคงที่ควรทำ) ตรวจสอบให้แน่ใจว่าข้อความบนเครื่องมือของคุณขึ้นต้นด้วย "<HTML>" ขีดเส้นด้วย "<BR/>" หรือ "<P>" ฉันรู้ว่ามันไม่ใช่วิธีแก้ปัญหาที่สะอาดที่สุดและการรองรับ HTML ของ Java นั้นแย่มาก แต่ก็ควรทำให้เสร็จ
สิ่งนี้สามารถปรับปรุงได้บ้าง แต่วิธีการของฉันคือฟังก์ชันตัวช่วยที่เรียกว่าก่อนตั้งค่าคำแนะนำเครื่องมือที่แบ่งข้อความคำแนะนำเครื่องมือตามความยาวที่กำหนด แต่ปรับให้แบ่งคำในช่องว่างหากเป็นไปได้
import java.util.ArrayList;
import java.util.List;
/**
*
*/
public class MultiLineTooltips
{
private static int DIALOG_TOOLTIP_MAX_SIZE = 75;
private static final int SPACE_BUFFER = 10;
public static String splitToolTip(String tip)
{
return splitToolTip(tip,DIALOG_TOOLTIP_MAX_SIZE);
}
public static String splitToolTip(String tip,int length)
{
if(tip.length()<=length + SPACE_BUFFER )
{
return tip;
}
List<String> parts = new ArrayList<>();
int maxLength = 0;
String overLong = tip.substring(0, length + SPACE_BUFFER);
int lastSpace = overLong.lastIndexOf(' ');
if(lastSpace >= length)
{
parts.add(tip.substring(0,lastSpace));
maxLength = lastSpace;
}
else
{
parts.add(tip.substring(0,length));
maxLength = length;
}
while(maxLength < tip.length())
{
if(maxLength + length < tip.length())
{
parts.add(tip.substring(maxLength, maxLength + length));
maxLength+=maxLength+length;
}
else
{
parts.add(tip.substring(maxLength));
break;
}
}
StringBuilder sb = new StringBuilder("<html>");
for(int i=0;i<parts.size() - 1;i++)
{
sb.append(parts.get(i)+"<br>");
}
sb.append(parts.get(parts.size() - 1));
sb.append(("</html>"));
return sb.toString();
}
}
ใช้เช่น
jComponent.setToolTipText(MultiLineTooltips.splitToolTip(TOOLTIP));
คุณสามารถซับคลาส JToolTip ซึ่งเป็นคอมโพเนนต์และแทนที่ createToolTip () บนคอมโพเนนต์
นี่คือเวอร์ชันที่ฉันเคยใช้มาก่อนซึ่งทำงานได้ดีหากคุณกำลังโหลดเคล็ดลับเครื่องมือจาก ResourceBundles:
import javax.swing.JComponent;
import javax.swing.JToolTip;
import javax.swing.LookAndFeel;
import javax.swing.UIManager;
import javax.swing.plaf.ComponentUI;
import javax.swing.plaf.ToolTipUI;
import java.awt.Dimension;
import java.awt.FontMetrics;
import java.awt.Graphics;
import java.util.regex.Pattern;
/**
* A tooltip that wraps multi-line text.
*/
public final class MultiLineToolTipUI extends ToolTipUI {
private static final int INSET = 2;
private static final Pattern LINE_SPLITTER = Pattern.compile("$", Pattern.MULTILINE);
private static final MultiLineToolTipUI SHARED_INSTANCE = new MultiLineToolTipUI();
/**
* Install the multi-line tooltip into the UI manager.
*/
public static void installUI() {
String toolTipUI = MultiLineToolTipUI.class.getName();
UIManager.put("ToolTipUI", toolTipUI);
UIManager.put(toolTipUI, MultiLineToolTipUI.class);
}
@SuppressWarnings("UnusedDeclaration")
public static ComponentUI createUI(JComponent c) {
return SHARED_INSTANCE;
}
private MultiLineToolTipUI() {}
@Override
public Dimension getMaximumSize(JComponent c) {
return getPreferredSize(c);
}
@Override
public Dimension getMinimumSize(JComponent c) {
return getPreferredSize(c);
}
@Override
public Dimension getPreferredSize(JComponent c) {
String[] lines = LINE_SPLITTER.split(((JToolTip) c).getTipText());
if (lines.length == 0) {
return new Dimension(2 * INSET, 2 * INSET);
}
FontMetrics metrics = c.getFontMetrics(c.getFont());
Graphics g = c.getGraphics();
int w = 0;
for (String line : lines) {
w = Math.max(w, (int) metrics.getStringBounds(line, g).getWidth());
}
int h = lines.length * metrics.getHeight();
return new Dimension(w + 2 * INSET, h + 2 * INSET);
}
@Override
public void installUI(JComponent c) {
LookAndFeel.installColorsAndFont(c, "ToolTip.background", "ToolTip.foreground", "ToolTip.font");
LookAndFeel.installBorder(c, "ToolTip.border");
}
@Override
public void paint(Graphics g, JComponent c) {
int w = c.getWidth(), h = c.getHeight();
g.setColor(c.getBackground());
g.fillRect(0, 0, w, h);
g.setColor(c.getForeground());
g.drawRect(0, 0, w, h);
String[] lines = LINE_SPLITTER.split(((JToolTip) c).getTipText());
if (lines.length != 0) {
FontMetrics metrics = c.getFontMetrics(c.getFont());
int height = metrics.getHeight();
int y = INSET + metrics.getAscent();
for (String line : lines) {
g.drawString(line, INSET, y);
y += height;
}
}
}
@Override
public void uninstallUI(JComponent c) {
LookAndFeel.uninstallBorder(c);
}
}
และคุณจะใช้โดยเรียกวิธีนี้ก่อนสร้าง UI ของคุณ:
MultiLineToolTipUI.installUI();
จากนั้นในไฟล์คุณสมบัติของคุณเพียงแค่ใส่บรรทัดใหม่เพื่อรวมเคล็ดลับเครื่องมือของคุณตามต้องการ
ฉันสร้างคลาสยูทิลิตี้ที่จัดรูปแบบสตริงให้มีความยาวเฉพาะโดยอัตโนมัติด้วย<br>
แท็ก มันขึ้นอยู่กับคลาส MultiLineToolTips ที่โพสต์โดย Paul Taylor แต่เขามีจุดบกพร่องที่ข้ามส่วนของสตริงและไม่ได้ จำกัด สตริงไว้ที่ความยาวที่เฉพาะเจาะจง
ในการใช้คลาสของฉันเพียงแค่เรียกใช้เมธอด SplitToolTip โดยการเขียนMultiLineToolTips.splitToolTip(yourString);
หรือMultiLineToolTips.splitToolTip(yourString, maxLength);
ถ้าคุณต้องการแบ่งเป็นความยาวสูงสุดที่ระบุ สิ่งนี้จะสร้างสตริงคำแนะนำเครื่องมือที่มีรูปแบบสวยงาม
import java.util.ArrayList;
import java.util.List;
/** A helper class to split strings into a certain length,
* formatted with html {@literal<br>} tags for multi-line tool tips.
* Based on the MultiLineToolTips class posted by
* <a href="https://stackoverflow.com/users/1480018/paul-taylor">Paul Taylor</a>
* on <a href="https://stackoverflow.com/a/13503677/9567822">Stack Overflow</a>
* @author <a href="https://stackoverflow.com/users/9567822/andrew-lemaitre?tab=profile">Andrew LeMaitre</a>
*/
public final class MultiLineToolTips {
/** Private constructor for utility class. */
private MultiLineToolTips() {
}
/** Default max length of the tool tip when split with {@link #splitToolTip(String)}. */
private static final int DIALOG_TOOLTIP_MAX_SIZE = 75;
/** A function that splits a string into sections of {@value #DIALOG_TOOLTIP_MAX_SIZE} characters or less.
* If you want the lines to be shorter or longer call {@link #splitToolTip(String, int)}.
* @param toolTip The tool tip string to be split
* @return the tool tip string with HTML formatting to break it into sections of the correct length
*/
public static String splitToolTip(final String toolTip) {
return splitToolTip(toolTip, DIALOG_TOOLTIP_MAX_SIZE);
}
/** An overloaded function that splits a tool tip string into sections of a specified length.
* @param toolTip The tool tip string to be split
* @param desiredLength The maximum length of the tool tip per line
* @return The tool tip string with HTML formatting to break it into sections of the correct length
*/
public static String splitToolTip(final String toolTip, final int desiredLength) {
if (toolTip.length() <= desiredLength) {
return toolTip;
}
List<String> parts = new ArrayList<>();
int stringPosition = 0;
while (stringPosition < toolTip.length()) {
if (stringPosition + desiredLength < toolTip.length()) {
String tipSubstring = toolTip.substring(stringPosition, stringPosition + desiredLength);
int lastSpace = tipSubstring.lastIndexOf(' ');
if (lastSpace == -1 || lastSpace == 0) {
parts.add(toolTip.substring(stringPosition, stringPosition + desiredLength));
stringPosition += desiredLength;
} else {
parts.add(toolTip.substring(stringPosition, stringPosition + lastSpace));
stringPosition += lastSpace;
}
} else {
parts.add(toolTip.substring(stringPosition));
break;
}
}
StringBuilder sb = new StringBuilder("<html>");
for (int i = 0; i < parts.size() - 1; i++) {
sb.append(parts.get(i) + "<br>");
}
sb.append(parts.get(parts.size() - 1));
sb.append(("</html>"));
return sb.toString();
}
}
หากคุณเพียงแค่เพิ่ม<html>
ข้อความคำแนะนำเครื่องมือของคุณข้อความนั้นจะใช้งานได้จนกว่าคุณจะมี/*...*/
หรือ HTML ในข้อความของคุณ ใช้<html><pre>
หรือหลบหนีข้อความของคุณ ฉันยังต้องใช้<font size=3>
เพื่อให้มันดูดี