根本没有在imageButtons中获取图像

时间:2016-09-25 15:28:18

标签: android android-layout android-recyclerview

在我的布局文件中,对于最后一个线性布局,我添加了三个带有效图像和文本的图像按钮。但是它们根本没有显示在应用程序中。下面给出了这个的布局文件。

  <?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:layout_width="match_parent"
    android:layout_height="120dp"

    android:background="?android:attr/selectableItemBackground"
    android:clickable="true"
    android:focusable="true"
    android:orientation="vertical">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:srcCompat="@drawable/female_default"
            android:layout_gravity="center_horizontal"
            android:id="@+id/imageView2"
            android:layout_weight="1" />

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1">

            <TextView
                android:text="TextView"
                android:layout_gravity="center_horizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/textView3" />

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <TextView
                    android:text="TextView"
                    android:layout_gravity="center_horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/textView2" />

                <TextView
                    android:id="@+id/id"
                    android:layout_gravity="center_horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="@dimen/text_margin"
                    android:text="Balle"
                    android:textAppearance="?attr/textAppearanceListItem" />

                <TextView
                    android:id="@+id/content"
                    android:layout_gravity="center_horizontal"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="@dimen/text_margin"
                    android:text="Shaaba"
                    android:textAppearance="?attr/textAppearanceListItem" />
            </LinearLayout>

        </LinearLayout>

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="100dp">

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            app:srcCompat="@android:drawable/ic_menu_edit"
            android:id="@+id/imageButton4"
            android:layout_weight=".25" />

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            app:srcCompat="@android:drawable/ic_menu_delete"
            android:id="@+id/imageButton3"
            android:layout_weight=".25" />

        <Button
            android:text="@string/mark_as_default"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/button"
            android:layout_weight=".5" />
    </LinearLayout>

</LinearLayout>

Given is the snapshot of the image. As you can see, below the circular image all the three buttons are not visible at all.

3 个答案:

答案 0 :(得分:0)

更改

  android:srcCompat="drawable/ic_menu_edit"

 app:srcCompat="drawable/ic_menu_edit"

srcCompat是AppCompat库的一个属性。

答案 1 :(得分:0)

您似乎正在尝试使用内置的Android资源。因此,您需要对您的内容进行以下更改 ImageButton图像源:

//更改此

<ImageButton android:src="@android:drawable/ic_menu_delete"/>

//到此

{{1}}

确保在所有图像按钮srcCompat属性中更改此语法,它应该可以正常工作。

如果您的项目drawables文件夹中有这些图标的副本,那么 @ drawable / ic_menu_delete 语法将起作用

如果有任何帮助,请告诉我。

答案 2 :(得分:0)

基本上原因是父LinearLayout中的第一个LinearLayout将layout_height设为“match_parent”。因此,它抑制了包含三个ImageButtons的LinearLayout。将其更改为wrap_content使其正常工作。

android:focusable="true"
    android:orientation="vertical">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent">