我正在创建一个LinearLayout并在此布局中...将有一个选择菜单。我想知道如何在文本旁边添加一个图标。这是我的以下代码:
<ImageView
android:src="@drawable/ic_launcher"
android:layout_width="200dp"
android:layout_height="175dp"
android:layout_gravity="left"
<TextView
android:text="Check Account"
android:textSize="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_gravity="right"/>
</ImageView>
它不按照我想要的方式工作。
请帮忙。
答案 0 :(得分:2)
我不知道“选择菜单”是什么意思,但是如果你想让这个文字+图像成为可以点击的选项,你可能想要使用普通的button。
您可以在本文的顶部/底部/右侧/左侧添加文字和绘图,同时形成一个按钮。
<Button
android:id="@+id/groups_button_bg"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="MenuOption1"
android:drawableTop="@drawable/[image]" />