このように並べる方法textView
を教えてください。imageview
_____
| |
|_____| Some Dummy text,Some Dummy text,
Some Dummy text,Some Dummy text,S...more
TextView を 2 行だけに制限したいのですが、最後に 1 つの TextView または Button を呼び出して、ポップアップで開くテキストを増やします。
このようなものを作成することは可能ですか?
このように並べる方法textView
を教えてください。imageview
_____
| |
|_____| Some Dummy text,Some Dummy text,
Some Dummy text,Some Dummy text,S...more
TextView を 2 行だけに制限したいのですが、最後に 1 つの TextView または Button を呼び出して、ポップアップで開くテキストを増やします。
このようなものを作成することは可能ですか?
これは私のために働いた、見てください: http://gmariotti.blogspot.co.uk/2014/03/snippet-align-textview-around-image.html
それは間違いなく可能です。これらの各ビューを配置して必要に応じて配置できる RelativeLayout を使用する必要があります。
<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>