首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

Android初学者日记 26 ListView中放置button

2012-06-27 
Android菜鸟日记 26 ListView中放置button??xml version1.0 encodingutf-8?RelativeLayout xmlns

Android菜鸟日记 26 ListView中放置button

?

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <Button android:id="@+id/bt_list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/list_line_bg" android:onClick="funClick" /> <TextView android:layout_marginLeft="28dp" android:layout_marginTop="10dp" android:id="@+id/tx1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="18dp" android:textColor="#2b82e8" /> <TextView android:layout_marginLeft="28dp" android:layout_marginRight="9dp" android:id="@+id/tx2" android:layout_below="@id/tx1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="14dp" android:textColor="#6c6c6c" /> <Button android:layout_alignParentRight="true" android:id="@+id/bt3" android:layout_width="wrap_content" android:textColor="#ffffff" android:layout_height="wrap_content" android:layout_marginLeft="30dp" android:layout_marginTop="76dp" android:layout_marginRight="15dp" android:paddingLeft="12dp" android:onClick="funClick" android:background="@drawable/selector_button_phonecall" /></RelativeLayout>

poolo

热点排行