我的问题是关于构建自己的ImageButton。 我希望拥有所有具有ImageButton的东西,但我想在其上添加一些TextField。 所以我想创建具有以下内容的组件:
答案 0 :(得分:1)
基本上我们正在制作一个相对布局(父母),这将是我们的图像按钮'。 Xml代码如下所示,对于Java,您只需要在此id上实现setonclicklistener。
<RelativeLayout
android:layout_width="wrap_content"
android:id="@+id/imageButton"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/page_image"
android:layout_marginRight="6dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/no_photo" />
<TextView
android:id="@+id/page_name"
android:layout_alignTop="@id/page_image"
android:layout_toRightOf="@id/page_image"
android:layout_below="@id/page_image
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
答案 1 :(得分:1)
您可以使用以下布局:对于80%和20%的高度,使用android:layout_weight
属性
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout_id"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".80"
android:src="@mipmap/ic_launcher"
android:text="left" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".20"
android:gravity="center"
android:text="Sample Text" />
</LinearLayout>