我需要您的建議,關於我的設計,如果您有更好的想法(或者您同意我的觀點),那就太好了。出於某種原因,我有一種感覺,這是一個「石器時代編程風格」,但讓我們看看。可見和不可見的佈局
基本上我有我的xml相對佈局。在中心(垂直和horizenatlly)。我想顯示「或者」3個按鈕或3個文本取決於某些用戶輸入。所以我做了如下:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clipChildren="false"
android:clipToPadding="false" >
<RelativeLayout android:id="@+id/Buttons"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<Button1 .../>
<Button2 .../>
<Button3 .../>
</RelativeLayout>
<RelativeLayout android:id="@+id/Texts"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<TextView1 .../>
<TextView2.../>
<TextView3.../>
</RelativeLayout>
</RelativeLayout>
根據用戶輸入的代碼,我設置能見度可見或不可見
難道這好嗎?如果不是,你建議什麼?
完美。我喜歡看到其他選項,以及我正在尋找的內容。如何將它放入2 diffenret xmls for futures maintaince.Can您請詳細說明「包含」?我知道如何使用鰭狀肢,但從未在 – Snake 2012-04-10 02:25:44
之前看過包含,我正在使用include選項編輯答案。 – Shubhayu 2012-04-10 04:45:47
太棒了。非常感謝,多數民衆贊成我正在尋找 – Snake 2012-04-10 16:24:39