我想讓兩個android按鈕出現在兩個textviews之間。但是第一個textview似乎正在顯示,而另一個textview和按鈕沒有出現。我希望它看起來像:如何在Textviews中放置按鈕
「等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等按鈕等等等等等等等等等等blahblah等等等等等等等等等等BUTTON」
什麼我看到的是:
「等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等等」
下面是代碼:
<LinearLayout android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:text="Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah "
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="BUTTON"
android:background="@null"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:text=" blah blah blah blah blah blahblah blah blah blah blah blah "
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="BUTTON"
android:background="@null"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
任何幫助將不勝感激!
您好Serdar,感謝您的快速響應,請您提供一個如何使用佈局權重來實現我想要的示例? – c8apps
檢查這個鏈接這是你的最好例子。 http://developer.android.com/resources/tutorials/views/hello-linearlayout.html –