- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我即将制作一个新的应用程序,我偶然发现了一个非常酷的侧边栏(按钮面板),我将尝试添加到该应用程序(它是 Spotify 上的左侧边栏)。我好奇的是原理(看一下附图)。
顶部有 3 个按钮(我假设它是 JList 或 JTable 项目)。
中间有一个“YOUR MUSIC”标题(也许是 JLabel??)
我们还有一个新的播放列表(JButton)
然后是播放列表列表(JList 还是 JTable?)
我想知道的有趣的事情是:
首先,三个 JList(playlistList、appList 和 yourmusicList,我假设它的 JList)共享相同的 JScrollPane,因此 JList/JTables(或无论它是什么)必须根据它包含的项目数量更改大小(高度) 。 (例如:播放列表列表的高度取决于是否有 3 个或 17 个播放列表。)
其次:我设法在同一个 JPanel 中添加按钮、标签、JList,但我不知道如何为它们提供共享的 JScrollPane(当我尝试为两个 JList 提供相同的 ScrollPane 时出现问题)。
我认为,我对应包含项目的 JPanel 使用了错误的 LayoutManager,并且使用了错误类型的组件(JList、JTable)。如果有一个名为 JSideBar 之类的 Swing 组件,那就太好了!
嗯,就是这样!没有代码示例,因为它不会以任何方式真正受益
问候奥利弗
最佳答案
[...] but i could not figure out how to give them a shared JScrollPane (The problem occured when i tried to give two JLists same ScrollPane).
您可以将所有组件添加到 JPanel
中,并将其设置为 JScrollPane
View 端口。看看How to Use Scroll Panes教程。
If theres a Swing Component called JSideBar or something, it would be great!
默认情况下不提供,但使用 JPanel 并使用 BoxLayout 制作自己的可滚动侧边栏非常容易。 。查看教程:How to Use BoxLayout 。例如:
import java.awt.BorderLayout;
import java.awt.Graphics;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JComponent;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
/**
* @author dic19
*/
public class JSideBar extends JComponent {
private final JPanel content;
public JSideBar(boolean scrollable) {
super();
content = new JPanel();
content.setLayout(new BoxLayout(content, BoxLayout.PAGE_AXIS));
this.setLayout(new BorderLayout());
if(scrollable) {
this.add(new JScrollPane(content));
} else {
this.add(content);
}
}
/**
* Adds a component to this side bar.
*
* @param comp The component.
* @param alignment One of {@code Component.LEFT_ALIGNMENT, Component.CENTER_ALIGNMENT, Component.RIGHT_ALIGNMENT}
*
* @see java.awt.Component#LEFT_ALIGNMENT
* @see java.awt.Component#CENTER_ALIGNMENT
* @see java.awt.Component#RIGHT_ALIGNMENT
*/
public void addItem(JComponent comp, float alignment) {
comp.setAlignmentX(alignment);
content.add(comp);
if(content.isShowing()) {
revalidate();
repaint();
}
}
/**
* Adds a vertical space to this side bar.
* @param height Height of vertical space.
*/
public void addVerticalSpace(int height) {
content.add(Box.createVerticalStrut(height));
}
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics graphics = g.create();
graphics.setColor(getBackground());
graphics.fillRect(0, 0, getWidth(), getHeight());
graphics.dispose();
}
}
这是根据您的情况使用的示例:
JLabel appFinderLabel = new JLabel("AppFinder");
JLabel musicxMatchLabel = new JLabel("musicXmatch");
JLabel tuneWikiLabel = new JLabel("TuneWiki");
JLabel yourMusicLabel = new JLabel("YOUR MUSIC");
JLabel songsLabel = new JLabel("Songs");
JLabel albumsLabel = new JLabel("Albums");
JLabel artistsLabel = new JLabel("Artists");
JLabel localFilesLabel = new JLabel("Local Files");
/*
* Set icons, background and stuff if you need to
* A good option would be use undecorated JButtons instead of JLabels
*/
JSideBar sideBar = new JSideBar(true);
sideBar.addItem(appFinderLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(musicxMatchLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(tuneWikiLabel, Component.LEFT_ALIGNMENT);
sideBar.addVerticalSpace(20);
sideBar.addItem(yourMusicLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(songsLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(albumsLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(artistsLabel, Component.LEFT_ALIGNMENT);
sideBar.addItem(localFilesLabel, Component.LEFT_ALIGNMENT);
请注意滚动条:
关于java - JList/JTable 作为按钮面板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23090858/
我已经多次看到我的问题被问到,但我从未看到我期望的答案。我已经在 JTable 中输入了数据库的元素,并且我希望能够通过一些 JButtons 删除/添加元素。问题是当我添加/删除时,修改在数据库
我正在使用 JTable 做一个项目,我想让我的表格单元格可编辑。我用过, public boolean isCellEditable(int row, int column) {
我正在编写一个应用程序包,其中包含一个主类,其中主方法与GUI类分开,GUI类包含一个带有jtabbedpane的jframe,它有两个选项卡,第一个选项卡包含一个jtable,称为jtable1,第
我制作了一个表格来将 Arraylist 中的数据加粗,但如果我删除该数据,我会希望该表格更新并取消对 Arraylist 中加粗的单元格的粗体显示。我该怎么做呢?或从另一个类关闭该类的实例 最佳答案
如果我的 JTable 的列未按字母顺序排列,我可以使用 getSelectedRows() 并毫无问题地获取它们的行的值。但是,如果用户单击列名并且行在该列中按字母顺序排列,则 getSelecte
我有一个 JTable,用户可以在其中在单元格中输入数据。然后有一个“保存”按钮,用于收集表格数据,将其格式化为 csv,并将其保存到文件中。 但是,如果用户将最后编辑的单元格保留在选定状态,并单击“
我编写了下面的代码,以便在当前 JTable 上进行选择时创建一个新的 JTable: makeTbale.addActionListener(new ActionListener() { pub
我正在使用 Swing 编写 Java 应用程序。我有两个表,我必须将内容从一个表复制到另一个表(复制)。问题是,如果我清除目标表行,那么我的源表行也会被删除。 如果我按 CopyAll,那么我会将
我一直致力于JTable,我的项目: 从数据库读取数据(我完成了这个任务并能够在JTable中显示)。 然后将数据按子组显示并保存到文件(文本/Excel)中。 我有 JTable 的基本知识,并且使
我有以下类(class): public class customer_master extends javax.swing.JInternalFrame { Connection con =
您好,我是 JAVA 的新手,在学习时正在开发 GUI。我创建了一个带有 ScrollPane 和 JTable 的 JFrame。当我增加 2 列以上时,第一行下方的数据不会显示。 此外,当我的 J
我正在进行项目的最后一部分,这是我遇到的最后问题之一。这部分用于编辑预订,即更改为特定预订预订的房间。我有 2 个 JTable,其中一个有可用房间,另一个有已预订的房间。两者都有单独的 Defaul
我有 2 个 JTable,我需要从表 2 中复制特定列(包括该列中的所有数据)并将其添加到表 1 中的下一个空闲列中。有人知道执行此操作的最佳方法吗? 谢谢 最佳答案 DefaultTableMod
美好的一天!我在 Jtable 方面遇到了困难。我已经阅读和浏览了各种教程,但我不太明白它的要点。我的问题是,我必须从 jtable (jTable1) 中选择包含 (ClientID、LastNam
我的 SERVER 表单上有一个 JTable,它是从 MySQL 数据库填充的,在构造函数中编码: String sql = "SELECT * from fiekorari"; t
我在我的项目上工作,我需要将一行从 JTable 复制到另一个 JTable,第二个 JTable 应该只是单行表。我为第一个 JTable 创建了 mouselistener,双击它应该复制行并将其
我有这段代码可以完全按预期工作 package com.grantbroadwater.signInAssistant.view; import java.awt.BorderLayout; impo
我有一个列表人员(在 jTable 中)并想将其导出到 excel 文件我需要每个人转到单独的工作表所以我需要拆分原始 jTable,但我不知道如何? 这就是我想做的? public void exp
我有一个包含 7 列和 2 行的 JTable。在我的 JTable 下方,我有一个 JTextField。当我在 JTextField 中输入内容时,我可以很容易地得到我输入的内容:String l
我正在尝试将一个 JTable 嵌套在另一个 JTable 的列中(使用 CellRenderer)。 示例(错误)输出: 为什么下面的例子没有输出表中表? import java.awt.Compo
我是一名优秀的程序员,十分优秀!