mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
22 lines
637 B
XML
22 lines
637 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:background="#fff">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView"
|
|
android:layout_width="@dimen/image_width"
|
|
android:layout_height="@dimen/image_width"
|
|
android:layout_marginLeft="10dp"
|
|
android:padding="5dp"
|
|
android:src="@drawable/ic_launcher" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:text="Demo"
|
|
android:textColor="#000" />
|
|
</LinearLayout> |