如何将ImageView周围的TextView与固定的文本行对齐

时间:2012-07-19 09:01:29

标签: android android-layout textview

您能否告诉我如何textView imageview这样对齐

 _____
|     |
|_____| Some Dummy text,Some Dummy text,
Some Dummy text,Some Dummy text,S...more 

我想将我的TextView仅限制为2行,最后我将有一个TextView或Button为更多文本调用更多文本,这些文本将在弹出窗口中打开。

是否可以创建这样的东西。?

3 个答案:

答案 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)