-2
我做了一個很好的代碼,其中文本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個時間表文本將在同一行中我把它們放在列表視圖
圖片放在列表視圖顯示
沒問題是一樣的 – rishav