mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +03:00
27 lines
No EOL
825 B
XML
27 lines
No EOL
825 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:clickable="true"
|
|
android:orientation="vertical"
|
|
android:background="#fff"
|
|
android:paddingLeft="16dp"
|
|
tools:context=".MainActivity" >
|
|
|
|
<TextView
|
|
android:id="@+id/textView1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="16dp"
|
|
android:textSize="16dp" >
|
|
|
|
</TextView>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@android:color/black" />
|
|
|
|
</LinearLayout> |