Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6191465
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:46:10+00:00 2026-05-24T02:46:10+00:00

I have no idea why, but randomly the arrow doesn’t show up on my

  • 0

I have no idea why, but randomly the “arrow” doesn’t show up on my list renderers/items (see pic). Does anybody know why? I’m not touching it with code. hierarchyviewer suggests the height is 1 when this happens. However even explicitly setting the height to 20dp it still happens. This also happens when I change the orientation of the phone. Disabling “convertView” and always creating a new one does not help. Any ideas?

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

<ImageView 
    android:id="@+id/imageView1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/arrow_right" 
    android:layout_marginTop="8dp"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="4dp"
    />

<com.domain.package.widgets.AnalogTextView
    style="@style/AnalogText"
    android:id="@+id/timeView" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="11:30p - 7:00p"
    android:layout_marginLeft="20dp"
    />

<TextView
    style="@style/LabelText"
    android:textStyle="bold"
    android:id="@+id/labelView" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="WORK"
    android:layout_below="@+id/timeView"
    android:layout_marginLeft="20dp"
    />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_below="@+id/labelView"
    android:layout_marginLeft="20dp"
    >
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Sunday"
        android:text="Su"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Monday"
        android:text="M"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Tuesday"
        android:text="Tu"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Wednesday"
        android:text="W"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Thursday"
        android:text="Th"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Friday"
        android:text="F"
        />
    <TextView
        style="WeekDayTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingRight="7dp"
        android:id="@+id/Saturday"
        android:text="Sa"
        />

</LinearLayout>

<CheckBox 
    android:id="@+id/enabledView" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:checked="true"
    android:focusable="false"
    android:layout_alignParentRight="true" 
    android:layout_marginRight="10dp"
    />

</RelativeLayout>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T02:46:11+00:00Added an answer on May 24, 2026 at 2:46 am

    Using a transparent color of 00000000 breaks imageviews from rendering in a listview. Changing it to 00FFFFFF fixes it!

    Colors:

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
    <color name="themeColor">#FF8312</color>
    <color name="primary_background">#C9C7C1</color>
    
    <color name="primary_text_light">#FFFFFF</color>
    <color name="primary_text_dark">#4F4F4C</color>
    
    
    
    <color name="white">#FFFFFF</color>
    <color name="transparent">#00FFFFFF</color>
    <!--     <color name="transparent">#00000000</color> -->
    
    </resources>
    

    Styles:

    <style name="AlarmList" parent="@android:style/Widget.ListView">
    <!--        <item name="android:listSelector">@drawable/list_selector_background</item> -->
        <item name="android:divider">@color/transparent</item>
        <item name="android:dividerHeight">10dp</item>
        <item name="android:cacheColorHint">@color/primary_background</item>
        <item name="android:background">@color/transparent</item>
    </style>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have no idea why but the contentherewrap div does not show fully when
I have no idea why this doesn't work, but doing some validation functions and
The basic idea is to have several questions, but only 1 showing randomly on
I have no idea why but only the bottom div works the code is:
I have no idea why this wont work but I have tried the following:
I have no idea why, but for some reason the top navigation at http://www.wilwaldon.com/crossing/badnav.html
I have no idea how this works or if it is even possible but
I have no idea if this is possible, but if it is, what would
I have no idea if this is possible ... but it would be cool.
I have no idea what this means. But here is the code that it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.