所以我有一個佈局,除了這個煩人的按鈕,一切都很好。有佈局問題
我的佈局由三個Layouts
組成,其中一個是標題。另外兩個顯示時間和日期。但在CardView
,我希望在時間(TextView
)下添加一個Button
。但由於某種原因,它一直向左走?我嘗試過拖動它,但它似乎不工作。
我的問題是,我怎麼能做出Button
奠定本身下TextView
?
下面的代碼是佈局 -
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/bg_card" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/mybutton"
android:text="Button" />
<com.activelauncher.MyTextView
android:id="@+id/time"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textSize="30sp"
android:text="10:08 PM"
android:textColor="#6b6b6b"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
變化的android:定向垂直 –
@TDMaster洛爾我這麼笨的xD謝謝你,它工作得很好:) – SmallVille