管理项目符号
在 Microsoft PowerPoint 中,您可以以与在 Word 和其他文本编辑器中相同的方式创建项目符号和编号列表。 Aspose.Slides for Android via Java 也允许您在演示文稿中的幻灯片中使用项目符号和数字。
为什么使用项目符号列表?
项目符号列表帮助您快速有效地组织和展示信息。
项目符号列表示例
在大多数情况下,项目符号列表具有以下三个主要功能:
- 吸引您的读者或观众对重要信息的注意
- 使您的读者或观众能够轻松扫描关键点
- 高效地传达和传递重要细节。
为什么使用编号列表?
编号列表也有助于组织和展示信息。理想情况下,当条目的顺序(例如,步骤 1,步骤 2 等)很重要,或当条目需要被引用(例如,见步骤 3)时,您应该使用数字(替代项目符号)。
编号列表示例
这是下面 创建项目符号 程序的步骤摘要(步骤 1 到步骤 15):
- 创建演示文稿类的实例。
- 执行多个任务(步骤 3 到步骤 14)。
- 保存演示文稿。
创建项目符号
本主题也是管理文本段落主题系列的一部分。此页面将演示如何管理段落的项目符号。当需要分步骤描述某事时,项目符号更为有用。此外,使用项目符号的文本看起来更有条理。使用项目符号的段落总是更容易阅读和理解。我们将看到开发人员如何使用 Aspose.Slides for Android via Java 的这一小但强大的功能。请按照以下步骤管理使用 Aspose.Slides for Android via Java 的段落项目符号:
- 创建一个 Presentation 类的实例。
- 使用 ISlide 对象访问幻灯片集合中的所需幻灯片。
- 在选定的幻灯片中添加一个 AutoShape。
- 访问添加形状的 TextFrame。
- 移除 TextFrame 中的默认段落。
- 使用 Paragraph 类创建第一个段落实例。
- 设置段落的项目符号类型。
- 将项目符号类型设置为 Symbol 并设置项目符号字符。
- 设置段落文本。
- 设置段落缩进以设置项目符号。
- 设置项目符号的颜色。
- 设置项目符号的高度。
- 将创建的段落添加到 TextFrame 段落集合中。
- 添加第二个段落并重复步骤 7 到 13 中给出的过程。
- 保存演示文稿。
下面的 Java 示例代码—上述步骤的实现—向您展示如何在幻灯片中创建项目符号列表:
// 实例化表示 PPTX 文件的 Presentation 类
Presentation pres = new Presentation();
try {
// 访问第一张幻灯片
ISlide slide = pres.getSlides().get_Item(0);
// 添加并访问 Autoshape
IAutoShape aShp = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
// 访问创建的 autoshape 的文本框
ITextFrame txtFrm = aShp.getTextFrame();
// 移除默认存在的段落
txtFrm.getParagraphs().removeAt(0);
// 创建一个段落
Paragraph para = new Paragraph();
// 设置段落项目符号样式和符号
para.getParagraphFormat().getBullet().setType(BulletType.Symbol);
para.getParagraphFormat().getBullet().setChar((char) 8226);
// 设置段落文本
para.setText("欢迎使用 Aspose.Slides");
// 设置项目符号缩进
para.getParagraphFormat().setIndent(25);
// 设置项目符号颜色
para.getParagraphFormat().getBullet().getColor().setColorType(ColorType.RGB);
para.getParagraphFormat().getBullet().getColor().setColor(Color.BLACK);
// set IsBulletHardColor 为 true 以使用自己的项目符号颜色
para.getParagraphFormat().getBullet().isBulletHardColor();
// 设置项目符号高度
para.getParagraphFormat().getBullet().setHeight(100);
// 将段落添加到文本框
txtFrm.getParagraphs().add(para);
// 将演示文稿保存为 PPTX 文件
pres.save("Bullet.pptx", SaveFormat.Pptx);
} finally {
pres.dispose();
}
创建图片项目符号
Aspose.Slides for Android via Java 允许您更改项目符号列表中的项目符号。您可以用自定义符号或图像替换项目符号。如果您希望为列表添加视觉趣味,或更加吸引注意力,您可以使用自己的图像作为项目符号。
理想情况下,如果您想用图片替换常规项目符号,您可能希望选择一个具有透明背景的简单图形图像。这类图像在作为自定义项目符号时效果最佳。
无论如何,您选择的图像都会缩小到非常小的尺寸,因此我们强烈建议您选择在列表中看起来不错的图像(作为项目符号符号的替代品)。
要创建图片项目符号,请按照以下步骤进行:
- 创建一个 Presentation 类的实例。
- 使用 ISlide 对象访问幻灯片集合中的所需幻灯片。
- 在选定的幻灯片中添加一个 autoshape。
- 访问添加形状的 TextFrame。
- 移除 TextFrame 中的默认段落。
- 使用 Paragraph 类创建第一个段落实例。
- 从磁盘加载图片到 IPPImage。
- 将项目符号类型设置为图片并设置图像。
- 设置段落文本。
- 设置段落缩进以设置项目符号。
- 设置项目符号的颜色。
- 设置项目符号的高度。
- 将创建的段落添加到 TextFrame 段落集合中。
- 添加第二个段落并重复之前步骤中的过程。
- 保存演示文稿。
此 Java 代码向您展示如何在幻灯片中创建图片项目符号:
Presentation pres = new Presentation();
try {
// 访问第一张幻灯片
ISlide slide = pres.getSlides().get_Item(0);
// 实例化用于项目符号的图像
IPPImage picture;
IImage image = Images.fromFile("asp1.jpg");
try {
picture = pres.getImages().addImage(image);
} finally {
if (image != null) image.dispose();
}
// 添加并访问 Autoshape
IAutoShape aShp = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
// 访问创建的 autoshape 的文本框
ITextFrame txtFrm = aShp.getTextFrame();
// 移除默认存在的段落
txtFrm.getParagraphs().removeAt(0);
// 创建新段落
Paragraph para = new Paragraph();
para.setText("欢迎使用 Aspose.Slides");
// 设置段落项目符号样式和图像
para.getParagraphFormat().getBullet().setType(BulletType.Picture);
para.getParagraphFormat().getBullet().getPicture().setImage(picture);
// 设置项目符号高度
para.getParagraphFormat().getBullet().setHeight(100);
// 将段落添加到文本框
txtFrm.getParagraphs().add(para);
// 将演示文稿写入为 PPTX 文件
pres.save("Bullet.pptx", SaveFormat.Pptx);
} catch (IOException e) {
} finally {
if (pres != null) pres.dispose();
}
创建多级项目符号
要创建一个包含不同级别项目的项目符号列表—在主项目符号列表下的附加列表—请按照以下步骤进行:
- 创建一个 Presentation 类的实例。
- 使用 ISlide 对象访问幻灯片集合中的所需幻灯片。
- 在选定的幻灯片中添加一个 autoshape。
- 访问添加形状的 TextFrame。
- 移除 TextFrame 中的默认段落。
- 使用段落类创建第一个段落实例并设置深度为 0。
- 使用段落类创建第二个段落实例并设置深度为 1。
- 使用段落类创建第三个段落实例并设置深度为 2。
- 使用段落类创建第四个段落实例并设置深度为 3。
- 将创建的段落添加到 TextFrame 段落集合中。
- 保存演示文稿。
这段代码是上述步骤的实现,向您展示如何在 Java 中创建一个多级项目符号列表:
// 实例化表示 PPTX 文件的 Presentation 类
Presentation pres = new Presentation();
try {
// 访问第一张幻灯片
ISlide slide = pres.getSlides().get_Item(0);
// 添加并访问 Autoshape
IAutoShape aShp = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
// 访问创建的 autoshape 的文本框
ITextFrame txtFrm = aShp.addTextFrame("");
// 移除默认存在的段落
txtFrm.getParagraphs().clear();
// 创建第一个段落
Paragraph para1 = new Paragraph();
// 设置段落项目符号样式和符号
para1.setText("内容");
para1.getParagraphFormat().getBullet().setType(BulletType.Symbol);
para1.getParagraphFormat().getBullet().setChar((char) 8226);
para1.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType((byte)FillType.Solid);
para1.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
// 设置项目符号级别
para1.getParagraphFormat().setDepth((short)0);
// 创建第二个段落
Paragraph para2 = new Paragraph();
// 设置段落项目符号样式和符号
para2.setText("第二级");
para2.getParagraphFormat().getBullet().setType(BulletType.Symbol);
para2.getParagraphFormat().getBullet().setChar('-');
para2.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType((byte)FillType.Solid);
para2.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
// 设置项目符号级别
para2.getParagraphFormat().setDepth((short)1);
// 创建第三个段落
Paragraph para3 = new Paragraph();
// 设置段落项目符号样式和符号
para3.setText("第三级");
para3.getParagraphFormat().getBullet().setType(BulletType.Symbol);
para3.getParagraphFormat().getBullet().setChar((char) 8226);
para3.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType((byte)FillType.Solid);
para3.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
// 设置项目符号级别
para3.getParagraphFormat().setDepth((short)2);
// 创建第四个段落
Paragraph para4 = new Paragraph();
// 设置段落项目符号样式和符号
para4.setText("第四级");
para4.getParagraphFormat().getBullet().setType(BulletType.Symbol);
para4.getParagraphFormat().getBullet().setChar('-');
para4.getParagraphFormat().getDefaultPortionFormat().getFillFormat().setFillType((byte)FillType.Solid);
para4.getParagraphFormat().getDefaultPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLACK);
// 设置项目符号级别
para4.getParagraphFormat().setDepth((short)3);
// 将段落添加到文本框
txtFrm.getParagraphs().add(para1);
txtFrm.getParagraphs().add(para2);
txtFrm.getParagraphs().add(para3);
txtFrm.getParagraphs().add(para4);
// 将演示文稿保存为 PPTX 文件
pres.save("MultilevelBullet.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
创建自定义编号列表
Aspose.Slides for Android via Java 提供了一个简单的 API 来管理带有自定义数字格式的段落。要在段落中添加自定义编号列表,请按照以下步骤进行:
- 创建一个 Presentation 类的实例。
- 使用 ISlide 对象访问幻灯片集合中的所需幻灯片。
- 在选定的幻灯片中添加一个 autoshape。
- 访问添加形状的 TextFrame。
- 移除 TextFrame 中的默认段落。
- 使用 Paragraph 类创建第一个段落实例并将 NumberedBulletStartWith 设置为 2。
- 使用 Paragraph 类创建第二个段落实例并将 NumberedBulletStartWith 设置为 3。
- 使用 Paragraph 类创建第三个段落实例并将 NumberedBulletStartWith 设置为 7。
- 将创建的段落添加到 TextFrame 段落集合中。
- 保存演示文稿。
这段 Java 代码向您展示如何在幻灯片中创建编号列表:
// 实例化表示 PPTX 文件的 Presentation 类
Presentation pres = new Presentation();
try {
// 访问第一张幻灯片
ISlide slide = pres.getSlides().get_Item(0);
// 添加并访问 Autoshape
IAutoShape aShp = slide.getShapes().addAutoShape(ShapeType.Rectangle, 200, 200, 400, 200);
// 访问创建的 autoshape 的文本框
ITextFrame txtFrm = aShp.addTextFrame("");
// 移除默认存在的段落
txtFrm.getParagraphs().clear();
// 第一列表
Paragraph paragraph1 = new Paragraph();
paragraph1.setText("编号 2");
paragraph1.getParagraphFormat().setDepth((short)4);
paragraph1.getParagraphFormat().getBullet().setNumberedBulletStartWith((short)2);
paragraph1.getParagraphFormat().getBullet().setType(BulletType.Numbered);
txtFrm.getParagraphs().add(paragraph1);
Paragraph paragraph2 = new Paragraph();
paragraph2.setText("编号 3");
paragraph2.getParagraphFormat().setDepth((short)4);
paragraph2.getParagraphFormat().getBullet().setNumberedBulletStartWith((short)3);
paragraph2.getParagraphFormat().getBullet().setType(BulletType.Numbered);
txtFrm.getParagraphs().add(paragraph2);
// 第二列表
Paragraph paragraph5 = new Paragraph();
paragraph5.setText("编号 5");
paragraph5.getParagraphFormat().setDepth((short)4);
paragraph5.getParagraphFormat().getBullet().setNumberedBulletStartWith((short)5);
paragraph5.getParagraphFormat().getBullet().setType(BulletType.Numbered);
txtFrm.getParagraphs().add(paragraph5);
pres.save(resourcesOutputPath + "SetCustomBulletsNumber-slides.pptx.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}