ImageViewとTextViewを使用した水平線形レイアウトがあります。私のテキストは長さが変わることがあります。だから私はImageViewとTextViewの高さを同じにしたい。誰も私にこれを達成する方法を教えてもらえますか?Horizontal LinearLayoutでのImageViewの高さの設定
-3
A
答えて
1
RelativeLayoutの助けを借りて、これを実現するには、imageviewのalignTop属性とalignBottom属性をtextviewに設定します。
0
これを試してください。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextViewsdfljasldfjl ;kasjdflkajslkdfasdfjlasjdfklasdklfjlkasdflkasdlkflkasdfasdfasdfasdfasdfasdf" />
</LinearLayout>
</LinearLayout>
関連する問題
- 1. Android five horizontal imageviews
- 2. horizontal horizontal Accordion
- 3. Android Horizontal Parallax
- 4. ListView with Horizontal ScrollView
- 5. Xcode horizontal ScrollView
- 6. ブラックベリーのHorizontal Managerでcomponentsenetsを設定するには?
- 7. ggolot horizontal gaps contour
- 8. Spritekit Horizontal ScrollView
- 9. FrameLayoutの高さをLinearLayoutの高さに設定する方法
- 10. Altova Horizontal Split
- 11. CATransform3DRotate flip horizontal
- 12. Android Horizontal Recyclerview
- 13. スクロールビューのhorizontal recyclerviewのスクロールの問題
- 14. HorizontalScrollView内のImageViewをLinearLayoutに合わせる
- 15. horizontal円上のテキスト
- 16. jquery horizontal scroll event - 編集
- 17. Android Edittext scoll horizontal
- 18. Invert horizontal AngularJSスライダーカスタムスケール
- 19. HTML Horizontal Nav Center
- 20. JQuery Horizontal Accordion CSS
- 21. javascript horizontal scroll text
- 22. ScrollPanel VerticalとHorizontal
- 23. android horizontal recyclerviewスムーススクロール垂直nestedscrollview
- 24. ediff-split-window-function horizontal == vertical?
- 25. MPAndroidChartの高さを設定できませんHorizontalBarChart
- 26. Mouse&Touch horizontal div sliding
- 27. ListView FullScreen-Item Scroll Horizontal
- 28. ImageViewの高さをMySQLのデータでプログラムで設定する
- 29. Jekyll Horizontal Nav Bar Troubles
- 30. UIPageControlまたはHorizontal UICollectionView?
ありがとうございました。それは今働く。 :) –