25 lines
850 B
XML
25 lines
850 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_marginLeft="1dp"
|
|
android:layout_marginRight="1dp"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/img_android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="#FFFFFF"
|
|
android:gravity="center"
|
|
android:lines="2"
|
|
android:textColor="#000000"
|
|
android:textStyle="bold" />
|
|
</LinearLayout> |