2

このように並べる方法textViewを教えてください。imageview

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

TextView を 2 行だけに制限したいのですが、最後に 1 つの TextView または Button を呼び出して、ポップアップで開くテキストを増やします。

このようなものを作成することは可能ですか?

4

3 に答える 3

0

これは私のために働いた、見てください: http://gmariotti.blogspot.co.uk/2014/03/snippet-align-textview-around-image.html

于 2016-04-20T13:12:21.953 に答える
0

それは間違いなく可能です。これらの各ビューを配置して必要に応じて配置できる RelativeLayout を使用する必要があります。

于 2012-07-19T09:02:59.507 に答える
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>
于 2012-07-19T09:32:35.210 に答える