您能否告诉我如何textView
imageview
这样对齐
_____
| |
|_____| Some Dummy text,Some Dummy text,
Some Dummy text,Some Dummy text,S...more
我想将我的TextView仅限制为2行,最后我将有一个TextView或Button为更多文本调用更多文本,这些文本将在弹出窗口中打开。
是否可以创建这样的东西。?
答案 0 :(得分:0)
绝对有可能。您需要使用RelativeLayout,您可以在其下放置每个视图并根据需要对齐它们。
答案 1 :(得分:0)
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="100dp"
android:src="@drawable/pic7"
android:text="image1" />
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Textview1" />
</LinearLayout>
答案 2 :(得分:0)