HarmonyOS开发08:案例——随机更换段子

本文介绍了如何使用Huawei Ohos框架的AbilitySlice实现一个功能,每次点击按钮,文本框会随机显示预先从文本文件中读取的不同段子。通过修改XML布局和Java代码,实现了界面元素的响应和数据的动态加载。
摘要由CSDN通过智能技术生成

首先把需要用到的 文本.txt 放入profile文件夹

修改ability_main.xml文件

<?xml version="1.0" encoding="utf-8"?>
<DirectionalLayout
    xmlns:ohos="http://schemas.huawei.com/res/ohos"
    ohos:height="match_parent"
    ohos:width="match_parent"
    ohos:alignment="center"
    ohos:orientation="vertical">

    <Text
        ohos:id="$+id:text1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:background_element="$graphic:background_ability_main"
        ohos:layout_alignment="horizontal_center"
        ohos:text="$string:mainability_HelloWorld"
        ohos:text_size="40vp"
        ohos:multiple_lines="true"
        />
    <Button
        ohos:id="$+id:but1"
        ohos:height="match_content"
        ohos:width="match_content"
        ohos:text="点我"
        ohos:text_size="100"
        ohos:background_element="#FFD76767"/>

</DirectionalLayout>

MainAbilitySlice.java整体代码:

package com.example.listenapplicantion7.slice;

import com.example.listenapplicantion7.ResourceTable;
import ohos.aafwk.ability.AbilitySlice;
import ohos.aafwk.content.Intent;
import ohos.agp.components.Button;
import ohos.agp.components.Component;
import ohos.agp.components.Text;
import ohos.global.resource.NotExistException;
import ohos.global.resource.Resource;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Random;

public class MainAbilitySlice extends AbilitySlice implements Component.ClickedListener {

    String[] jokes;
    Button but1;
    Text text1;
    @Override
    public void onStart(Intent intent) {
        super.onStart(intent);
        super.setUIContent(ResourceTable.Layout_ability_main);

        try {
            //3.用来拼接读取到的所有数据
            StringBuilder sb = new StringBuilder();
            //1.资源管理器
            Resource resource = this.getResourceManager().getResource(ResourceTable.Profile_joke);
            //2.因为resource是一个字节流,利用字节流可以读取文件中的内容
            BufferedReader br = new BufferedReader(new InputStreamReader(resource));
            String line;
            while ((line = br.readLine()) != null){
                sb.append(line);
            }
            //4.释放资源
            br.close();
            //至此,joke.txt全部读入sb当中了

            //5.利用---将所有数据进行切割,分成四个段子
            jokes = sb.toString().split("---");

            //6.当我们点击按钮之后,给文本框设置随机的一个笑话
            //找到文本,按钮组件
            but1 = (Button) findComponentById(ResourceTable.Id_but1);
            text1 = (Text) findComponentById(ResourceTable.Id_text1);
            //7.给按钮添加单击事件
            but1.setClickedListener(this);
            
        } catch (IOException e) {
            e.printStackTrace();
        } catch (NotExistException e) {
            e.printStackTrace();
        }

    }

    @Override
    public void onActive() {
        super.onActive();
    }

    @Override
    public void onForeground(Intent intent) {
        super.onForeground(intent);
    }

    @Override
    public void onClick(Component component) {
        //点击按钮后,从数据获取随机笑话,设置到文本当中
        //获取随机索引
        Random r = new Random();
        int index = r.nextInt(jokes.length);
        //通过索引获取段子
        String randomJoke = jokes[index];
        //把随机的段子设置到文本当中
        text1.setText(randomJoke);
    }
}

实现功能:每点击一次按钮随机更换一段文章

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

GeniusAng丶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值