Jlist文本中心对齐

Jlist文本中心对齐

本文介绍了Java Jlist文本中心对齐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在面板上有一个 JList

如何居中对齐 > JList 中的文本?
我似乎无法在模型的任何地方找到设置?

How can I center align the text in the JList?I can't seem to find the settings anywhere for the model?

我在GUI上查找了对齐设置,但似乎找不到任何设置。

I have looked for align settings on the GUI but cant seem to find any there.

推荐答案

这与模型无关,因为它涉及视图,ListCellRenderer是特定的。一种解决方案;获取渲染器并将其horizo​​ntalAlignment设置为SwingConstants.CENTER。假设您未使用自定义单元格渲染器,则可以执行以下操作:

This has nothing to do with the model since it involves the view, the ListCellRenderer to be specific. One solution; get the renderer and set its horizontalAlignment to SwingConstants.CENTER. Assuming that you're not using a custom cell renderer you could for example do:

DefaultListCellRenderer renderer = (DefaultListCellRenderer) myJList.getCellRenderer();
renderer.setHorizontalAlignment(SwingConstants.CENTER);

这篇关于Java Jlist文本中心对齐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 16:22