如何将图像按钮高度设置为大于RelativeLayout?

时间:2017-06-10 04:23:01

标签: android android-layout

我是android的初学者,想为我的应用程序设计一个简单的页脚,为此目的写下这个xml代码:

*


每件事情都可以,但我希望图片按钮比相对布局框或页脚大一点,为了更多的exmplain我希望图像按钮高度大于布局,我该如何解决?谢谢。
我想要这个输出请点击: not anymore

2 个答案:

答案 0 :(得分:0)

你可以这样做,

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout
        android:id="@+id/bottom_layout"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:layout_alignParentBottom="true"
        android:background="@color/colorPrimary">


    </RelativeLayout>

    <ImageView
        android:id="@+id/profile__iv"
        android:layout_width="100dp"
        android:layout_height="100dp"
        android:layout_alignTop="@+id/bottom_layout"
        android:layout_marginTop="-50dp"
        android:background="@drawable/bg_circle"/>

</RelativeLayout>

抽拉/ bg_c​​ircle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="oval">

    <size
        android:width="60dp"
        android:height="60dp"/>
    <solid android:color="@color/White"/>

</shape>

答案 1 :(得分:0)

不可能。因为Imagebutton是相对布局的子代。但是使用集合都是相同的大小。

  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:background="#125688"
android:gravity="center">
<ImageButton
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerVertical="true"
    android:layout_centerHorizontal="true"
    android:src="@drawable/left"
    android:scaleType="fitCenter"
    android:layout_alignParentLeft="true"
    android:foregroundGravity="right"/>
</RelativeLayout>

或使用此

   <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="#B0BEC5"
tools:context="com.example.raj.jazzflurry.MainActivity">
<ImageButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_menu_camera"
android:id="@+id/image"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@color/cardview_dark_background"
android:layout_alignParentBottom="true">
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_marginTop="20dp"
    android:textColor="#FFFFFF"
    android:text="Hai"
    android:textAlignment="center"/>
</RelativeLayout>
</RelativeLayout>