2016-11-18 47 views
-2

enter image description here我做了一個很好的代碼,其中文本1日程安排在這裏和2日程安排在這裏垂直相似。但我把這個佈局放在列表視圖中,所以7天的名字不一樣,佈局也改變了。我的自定義佈局有這個代碼。我把自定義佈局資源文件在列表視圖中的佈局更改順序

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

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="horizontal" 
     android:layout_marginLeft="3dp" 
     android:layout_marginRight="3dp" 
     android:background="@drawable/listback"> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:textSize="25dp" 
      android:paddingRight="80dp" 
      android:gravity="center_vertical" 
      android:text="Day name" 
      android:textColor="#ffffff" 
      android:textStyle="bold" 
      android:id="@+id/dayname" /> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:gravity="center" 
      android:paddingLeft="5dp" 
      android:orientation="vertical"> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="1 schedule here" 
       android:textSize="20dp" 
       android:textColor="#ffffff" 
       android:textStyle="bold" 
       android:id="@+id/mytext1" 
       android:layout_marginTop="5dp"/> 
      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:text="1 schedule here" 
       android:textSize="20dp" 
       android:textColor="#ffffff" 
       android:textStyle="bold" 
       android:id="@+id/mytext2" 
       android:layout_marginTop="5dp"/> 

      <TextView 
       android:layout_width="match_parent" 
       android:gravity="center_horizontal" 
       android:textColor="#ffffff" 
       android:textStyle="bold" 
       android:layout_height="wrap_content" 
       android:textAppearance="?android:attr/textAppearanceSmall" 
       android:text="Total" 
       android:id="@+id/totaltext" /> 

     </LinearLayout> 
     <ImageView 
     android:layout_width="90dp" 
     android:layout_height="90dp" 
     android:id="@+id/lightStatus" 
     android:layout_marginLeft="35dp" 
     android:src="@drawable/gray"/> 
    </LinearLayout> 
</LinearLayout> 

所以,我怎樣才能管理佈局,使我的1個時間表和2個時間表文本將在同一行中我把它們放在列表視圖

圖片放在列表視圖顯示

enter image description here後垂直

回答

0

你好你可以試試這個XML代碼,希望這可以幫助你......

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:layout_marginTop="10dp" 
android:orientation="vertical"> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginLeft="3dp" 
    android:layout_marginRight="3dp" 
    android:background="@android:color/darker_gray" 
    android:orientation="horizontal"> 

    <TextView 
     android:id="@+id/dayname" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_margin="3dp" 
     android:gravity="center_vertical" 
     android:text="Wednesday" 
     android:textColor="#ffffff" 
     android:textSize="25sp" 
     android:textStyle="bold" /> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:orientation="vertical" 
     android:paddingLeft="5dp" 
     android:weightSum="3"> 

     <TextView 
      android:id="@+id/mytext1" 
      android:layout_width="wrap_content" 
      android:layout_height="0dp" 
      android:layout_gravity="center" 
      android:layout_marginTop="5dp" 
      android:layout_weight="1" 
      android:gravity="center" 
      android:text="Nov 18 2016 Friday" 
      android:textColor="#ffffff" 
      android:textSize="20sp" 
      android:textStyle="bold" /> 

     <TextView 
      android:id="@+id/mytext2" 
      android:layout_width="wrap_content" 
      android:layout_height="0dp" 
      android:layout_gravity="center" 
      android:layout_marginTop="5dp" 
      android:layout_weight="1" 
      android:gravity="center" 
      android:text="no day available" 
      android:textColor="#ffffff" 
      android:textSize="20sp" 
      android:textStyle="bold" /> 

     <TextView 
      android:id="@+id/totaltext" 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_gravity="center" 
      android:layout_weight="1" 
      android:gravity="center" 
      android:text="no day available" 
      android:textAppearance="?android:attr/textAppearanceSmall" 
      android:textColor="#ffffff" 
      android:textStyle="bold" /> 

    </LinearLayout> 
    <ImageView 
     android:id="@+id/lightStatus" 
     android:layout_width="90dp" 
     android:layout_height="90dp" 
     android:layout_marginLeft="35dp" 
     android:src="@mipmap/ic_launcher" />  
    </LinearLayout> 
</LinearLayout> 
+0

沒問題是一樣的 – rishav