Skip to content

Latest commit

 

History

History
201 lines (151 loc) · 6.35 KB

README_CN.md

File metadata and controls

201 lines (151 loc) · 6.35 KB

logo

介绍

AndroidUiWidget 是一个丰富的UI组件库, 它能够使你的开发效率大大提升。

特点

  • 支持Androidx
  • 简洁、美观、易扩展
  • 支持下拉放大(ElasticView)

效果展示

IOSMessageDialog IOSBottomListDialog
ElasticView

开始使用

Dialog

maven

   <dependency>
	<groupId>cn.rubintry.widget</groupId>
	<artifactId>dialog</artifactId>
	<version>1.0.5</version>
	<type>pom</type>
   </dependency>

gradle

implementation 'cn.rubintry.widget:dialog:1.0.7'

Widget

maven

   <dependency>
	<groupId>cn.rubintry.widget</groupId>
	<artifactId>widget</artifactId>
	<version>1.0.5</version>
	<type>pom</type>
   </dependency>

gradle

implementation 'cn.rubintry.widget:widget:1.0.5'

注意:

如果你想使用ElasticView或者其他控件, 你需要引入Widget这个库.

如何使用?

IOSMessageDialog

   
    
    dialog = new IOSMessageDialog.Builder(this)
                .setCancelable(true) //设置是否能够取消
                .setMessage("你要提示的消息") //设置你的提示消息
                .setTextColor(ContextCompat.getColor(this, R.color.txtColor)) //设置你的文字提示的颜色
                .setPositiveButton("更新", new IOSMessageDialog.OnClickListener() {
                    @Override
                    public void onClick(Dialog dialog) {
                        //设置你的确定按钮名称,并添加监听事件
                    }

                })
                .setNegativeButton("取消", new IOSMessageDialog.OnClickListener() {
                    @Override
                    public void onClick(Dialog dialog) {
                        //设置你的取消按钮名称,并添加监听事件
                    }
                })
                .create();

    dialog.show();

IOSBottomListDialog

    List<String> list = new ArrayList<>();
        list.add("男");
        list.add("女");
        list.add("不显示");
        bottomDialog = new IOSBottomListDialog.Builder(this)
                .setCancelable(true)
                .setList(list)
                .setCancelListener(null)
                .setOnItemClickListener(new IOSBottomListDialog.OnItemClickListener() {
                    @Override
                    public void onCancel() {

                    }

                    @Override
                    public void onItemClick(String content , int position) {
                        Toast.makeText(MainActivity.this, content, Toast.LENGTH_SHORT).show();
                    }

                }).create();

        bottomDialog.show();

ElasticView

    elasticView.setHeader(imgHeader)//设置你的头部图片
        .setOnReadyPullListener(new OnReadyPullListener() {
            @Override
            public boolean isReady() {
                //返回一个合适的下拉条件
                return nslContent.getScrollY() == 0;
            }
        });

Layout

    <?xml version="1.0" encoding="utf-8"?>
    <cn.rubintry.widget.elastic.ElasticView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/esvContainer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".view.elastic.ElasticActivity">
    
        <androidx.core.widget.NestedScrollView
            android:id="@+id/nslContent"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">
    
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">
                <ImageView
                    android:id="@+id/imgHeader"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:src="@mipmap/a_logo"
                    android:adjustViewBounds="true"></ImageView>
    
    
                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/rvElasticData"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"></androidx.recyclerview.widget.RecyclerView>
            </LinearLayout>
        </androidx.core.widget.NestedScrollView>
    
    
    
    </cn.rubintry.widget.elastic.ElasticView>

License

Copyright 2020 Sunzhong Lu

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.