0

レイアウトはありますが、ImageView@id/category_starred_iconは表示されません。予想される動作は、2 つの TextView を使用して LinearLayout を利用可能なすべての空きスペースに拡張することですが、ImageView は表示されません。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:background="@drawable/borders" >

    <View
        android:id="@+id/category_color"
        android:layout_width="match_parent"
        android:layout_height="5dp"
        android:background="@color/awazari_blue" />

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

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

            <TextView
                android:id="@+id/category_name"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textIsSelectable="false"
                android:textSize="18sp"
                android:paddingLeft="5dp"
                android:paddingTop="5dp"
                android:paddingRight="5dp"
                android:textColor="@android:color/black"
                android:hint="@string/app_name"  />

            <TextView
                android:id="@+id/category_description"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:textIsSelectable="false"
                android:maxLines="3"
                android:paddingLeft="5dp"
                android:paddingRight="5dp"
                android:textColor="@color/awazari_medium_gray"
                android:ellipsize="end"
                android:hint="@string/description" />
        </LinearLayout>

        <ImageView
            android:id="@+id/category_starred_icon"
            android:layout_width="64dp"
            android:layout_height="64dp"
            android:src="@drawable/unstarred"
            android:contentDescription="@string/app_name"
            android:layout_gravity="right" />

    </LinearLayout>
</LinearLayout>
4

3 に答える 3

3

以下のコードを使用すると、必要なものが正確に得られます。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"

android:padding="6dip">

<LinearLayout
    android:orientation="vertical"

    android:layout_width="0dip"
    android:layout_weight="1"
    android:layout_height="fill_parent">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"                   
        android:gravity="center_vertical"
        android:text="First Textview" />

    <TextView  
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"             
        android:singleLine="true"
        android:ellipsize="marquee"
        android:text="Second Textview" />

</LinearLayout>

<ImageView
    android:id="@+id/icon"        
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_marginRight="6dip"        
    android:src="@drawable/ic_launcher" />

</LinearLayout>

これは出力です:

ここに画像の説明を入力

これがあなたを助けることを願っています。

于 2013-07-04T23:03:12.683 に答える
0

スクリーンショットや説明がないと、あなたが何を望んでいるのか正確にはわかりませんが、あなたの問題は、あなたImageViewLienarLayoutwithの中にいて、who's ishorizontal orientationを持つ別の子供がいるということです。LinearLayouthorizontal orientationwidthmatch_parentImageView

<LinearLayout
    android:orientation="horizontal"    <!-- This is the ImageViews parent  -->
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"         <!-- This child is taking up all of the width  -->
        android:layout_height="wrap_content">

LinearLayoutの 1 つを削除したり、 を付けvertical orientationたり、 を使用したりするなど、目的に応じて、ここでできることはさまざまですRelativeLayout。しかし、あなたが正確に何を望んでいるのかわからないので、それについて完全な答えを出すのは難しいです

編集

これにより、必要なものが得られるかどうかを確認できます。スクリーンショットやより良い説明がなければ、すべてがどこにあるのかを正確に知ることは困難です. ただし、これを好みに合わせて調整できます

<RelativeLayout
    android:layout_width="match_parent"     //changed this to a RelativeLayout
    android:layout_height="wrap_content">

    <LinearLayout
        android:id="@+id/ll"
        android:orientation="vertical"
        android:layout_width="wrap_content"    // changed the width here
        android:layout_height="wrap_content">

        <TextView
            android:id="@+id/category_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textIsSelectable="false"
            android:textSize="18sp"
            android:paddingLeft="5dp"
            android:paddingTop="5dp"
            android:paddingRight="5dp"
            android:textColor="@android:color/black"
            android:text="Text"  />

        <TextView
            android:id="@+id/category_description"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textIsSelectable="false"
            android:maxLines="3"
            android:paddingLeft="5dp"
            android:paddingRight="5dp"
            android:ellipsize="end" 
            android:text="Text Again"/>
    </LinearLayout>

    <ImageView
        android:id="@+id/category_starred_icon"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:src="@drawable/blue_box"
        android:layout_gravity="right"
        android:layout_alignParentRight="true" />

</LinearLayout>

TextViewエディターに表示できるように、s、色、および背景のテキストを変更したことに注意してください

于 2013-07-04T22:01:35.557 に答える
0

とレイアウトで両方を使用しているため、あなたImageViewは非表示になっています。android:orientation="horizontal"android:layout_width="match_parent"

ImageView見えないインナーの右側に隠れてLinearLayoutいます。

android:weight=1を除くすべての空き領域を埋めるためにImageView使用できますLinearLayout

于 2013-07-04T22:02:26.663 に答える