Android Tool Tip -


Apache
Android
Java

软件简介

给你的Android程序添加提示条的简单类库。

使用方式:

  • 在您的build.gradle文件中添加:

    repositories {
    

    maven { url ”https://jitpack.io" }
    } dependencies {
        compile ‘com.github.xizzhu:simple-tool-tip:0.1.0’ }

  • 或是在您的pom.xml文件中添加:

    <repository>
    

    jitpack.io
        https://jitpack.io


        com.github.xizzhu
        simple-tool-tip
        0.1.0

样例:

  • 您的layout XML文件:

    <?xml version="1.0" encoding="utf-8"?>
    

    xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="match_parent"     android:layout_height="match_parent">
    Button         android:id="@+id/button"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_gravity="center"         android:text="Click Me!" /

  • 您的Java代码:

    public class MainActivity extends Activity {     @Override     protected void onCreate(Bundle savedInstanceState) {         super.onCreate(savedInstanceState);
    

    setContentView(R.layout.activity_main);
            findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {             @Override public void onClick(View v) {                 ToolTip toolTip = new ToolTip.Builder()
                        .withText(“Simple Tool Tip!”)
                        .build(); ToolTipView toolTipView = new ToolTipView.Builder(this)
                        .withAnchor(v)
                        .withToolTip(toolTip)
                        .build();
                    toolTipView.show();
                }
            });
        }
    }