Advertisement
apl-mhd

Android Text Scrool

Feb 27th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.82 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    android:layout_width="match_parent"
  6.    android:layout_height="match_parent"
  7.    android:padding="10dp"
  8.    android:orientation="vertical"
  9.    tools:context="com.example.apelmahmud.x.MainActivity">
  10.  
  11.  
  12.     <ScrollView
  13.        android:padding="10dp"
  14.        android:layout_width="match_parent"
  15.        android:layout_height="match_parent">
  16.  
  17.         <TextView
  18.            android:layout_width="wrap_content"
  19.            android:layout_height="wrap_content"
  20.            android:text="@string/info"
  21.            android:textSize="18sp"
  22.            />
  23.  
  24.  
  25.  
  26.  
  27.     </ScrollView>
  28.  
  29. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement