move whole textinut layout android studio code example
Example 1: open link in android studio
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);
Example 2: how to add recyclerview support in android studio
dependencies {
implementation 'com.android.support:recyclerview-v7:28.0.0'
}