1 Star 1 Fork 0

Archermind-TI / coolMenu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
MIT

coolMenu

coolMenu 通过菜单方式切换Fraction

演示效果

集成

With gradle:

dependencies {
   compile 'com.gitee.archermind-ti:coolMenu:1.0.0'
}

使用方式

布局文件

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

    <com.dxtt.coolmenu.CoolMenuFrameLayout
        ohos:id="$+id:rl_main"
        ohos:height="match_parent"
        ohos:width="match_parent"
        ohos:layout_alignment="center"
        app:num="4"
        />
</DirectionalLayout>

代码设置

      coolMenuFrameLayout = (CoolMenuFrameLayout) findComponentById(ResourceTable.Id_rl_main);

        fractions.add(new Fraction1());
        fractions.add(new Fraction2());
        fractions.add(new Fraction3());
        fractions.add(new Fraction4());

        FractionListPageAdapter fractionList = new FractionListPageAdapter(
                ((MainAbility) getAbility()).getFractionManager(),
                ResourceTable.Id_rl_main) {
            @Override
            public int getCount() {
                return fractions.size();
            }

            @Override
            public Fraction getItem(int position) {
                return fractions.get(position);
            }
        };

        coolMenuFrameLayout.setAdapter(fractionList);
        String[] titles = {"CONTACT", "ABOUT", "TEAM", "PROJECTS"};
        titleList = Arrays.asList(titles);
        coolMenuFrameLayout.setTitles(titleList);

变动说明

新增 FactionListPageAdapter提供方便向控件提供Fraction信息。

License

coolMenu is available under the MIT license

MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

简介

A Cool Cards Menu Concept 展开 收起
Java
MIT
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
1
https://gitee.com/archermind-ti/coolmenu.git
git@gitee.com:archermind-ti/coolmenu.git
archermind-ti
coolmenu
coolMenu
master

搜索帮助