SkillAgentSearch skills...

MessageView

Simple message view andriod

Install / Use

/learn @ar-android/MessageView
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

MessageView

alt tag

Simple Message View Android Library

This is an Android project allowing to realize a MessageView instead of RelativeLayout in the simplest way possible.

Usage

To make a MessageView add in your layout XML and add MessageView library in your project or you can also grab it via Gradle:

Add it in your root build.gradle at the end of repositories:

allprojects {
   repositories {
    maven { url "https://jitpack.io" }
   }
}

Add dependencies :

dependencies {
     compile 'com.github.ar-android:MessageView:1.0.0'
}

XML

<com.ahmadrosid.lib.MessageView
	android:id="@+id/message_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

JAVA

MessageView messageView = (MessageView)findViewById(R.id.message_view);
messageView.setLeft();
messageView.setTitleMessages("Tittle Message");
messageView.setDecsMessages("Description messages bla bla bla");

You also can set to right

messageView.setRight();

LICENCE PercentView by Ahmad Rosid is licensed under a Apache License 2.0.

Related Skills

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated6mo ago
Forks7

Languages

Java

Security Score

62/100

Audited on Sep 17, 2025

No findings