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

  • SEARCH
  • Home
  • 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 8940091
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:57:42+00:00 2026-06-15T10:57:42+00:00

list_match.xml <?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="85dp" android:background="@drawable/list_selector" android:orientation="horizontal"> <LinearLayout android:id="@+id/thumbnail" android:layout_width="wrap_content" android:layout_height="wrap_content"

  • 0

list_match.xml

<?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="85dp"
android:background="@drawable/list_selector"
android:orientation="horizontal">

<LinearLayout
    android:id="@+id/thumbnail"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_marginRight="5dip"
    android:background="@drawable/image_bg"
    android:padding="3dip" >

    <ImageView
        android:id="@+id/self_photo"
        android:layout_width="50dip"
        android:layout_height="50dip"
        android:contentDescription="@string/desc" />
</LinearLayout>

<TextView
    android:id="@+id/self_team"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/thumbnail"
    android:layout_alignParentBottom="true"
    android:layout_alignRight="@+id/thumbnail"
    android:layout_below="@+id/thumbnail"
    android:gravity="center"
    android:textSize="12sp"/>

<TextView
    android:id="@+id/opponent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/textView1"
    android:layout_alignRight="@+id/match_score"
    android:layout_below="@+id/textView1"
    android:textSize="16sp"
    android:textStyle="bold" />

<TextView
    android:id="@+id/venue"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/self_team"
    android:layout_alignLeft="@+id/date_time" />

<TextView
    android:id="@+id/player_status"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignTop="@id/team_name"
    android:layout_marginRight="5dip"
    android:gravity="right"
    android:textColor="#10bcc9"
    android:textSize="15sp"
    android:textStyle="bold"/>

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/thumbnail"
    android:text="@string/opponent"
    android:textColor="@color/soft_grey"
    android:textSize="14sp"
    android:textStyle="bold" />

<TextView
    android:id="@+id/match_score"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/player_status"
    android:layout_centerVertical="true"
    android:textSize="18sp"
    android:textStyle="bold" />

<TextView
    android:id="@+id/date_time"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/venue"
    android:layout_alignLeft="@+id/opponent" />

<TextView
    android:id="@+id/absent"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/venue"
    android:layout_alignBottom="@+id/venue"
    android:layout_alignRight="@+id/match_score" />

<TextView
    android:id="@+id/time_remain"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/opponent"
    android:layout_alignBottom="@+id/opponent"
    android:layout_alignRight="@+id/opponent"
    android:textStyle="bold" />

</RelativeLayout>

enter image description here

is there a way change list like picture above with same height?

  • 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-06-15T10:57:44+00:00Added an answer on June 15, 2026 at 10:57 am

    You can set the TextView with id self_team with this parameters:

    <TextView
    android:id="@+id/self_team"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/thumbnail"
    android:layout_alignParentBottom="true"
    android:layout_alignRight="@+id/thumbnail"
    android:layout_below="@+id/thumbnail"
    android:maxLines="1"
    android:ellipsize="end"
    android:gravity="center"
    android:textSize="12sp"/>
    

    so it will only have one line. Hope that helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

<?xml version=1.0 encoding=utf-8?> <RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android android:layout_width=match_parent android:layout_height=match_parent android:orientation=vertical > <EditText android:layout_width=fill_parent android:layout_height=wrap_content android:id=@+id/speed android:inputType=number></EditText>
I have GridView: <?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=match_parent android:id=@+id/frag_books_grid_view_layout android:orientation=vertical> <GridView android:cacheColorHint=@color/bg_default
<?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=fill_parent android:background=@drawable/background android:orientation=vertical > <include android:id=@+id/include1 android:layout_width=fill_parent android:layout_height=70dp
Here is my layout: <?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=fill_parent android:orientation=vertical > <EditText
I have the following layout <?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=match_parent android:orientation=horizontal android:background=#f00
My original layout xml file looks like this: <?xml version=1.0 encoding=utf-8?> <LinearLayout xmlns:android=http://schemas.android.com/apk/res/android android:id=@+id/app
Lets say I have the following XML file: <?xml version=1.0 encoding=utf-8?> <Customers xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xsi:noNamespaceSchemaLocation=Customer.xsd>
my Environment is eclipse :3.2 android:2.3 <?xml version=1.0 encoding=utf-8?> <LinearLayout android:id=@+id/linearLayout2 android:layout_width=fill_parent android:isScrollContainer=true android:keepScreenOn=true
I got a xml layout file like this: <?xml version=1.0 encoding=utf-8?> <LinearLayout android:id=@+id/tabBar android:layout_width=fill_parent
I have this xml: <?xml version=1.0 encoding=utf-8 ?> <Interfaces> <Interface> <Name>Account Lookup</Name> <PossibleResponses> <Response>Account

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.