android java 文字图片混排
黑框为手机屏幕尺寸红框为实际要显示的东西需要滚动还要做到图片和文字和下图中一样排各位大神请问要怎么弄...
黑框为手机屏幕尺寸 红框为实际要显示的东西 需要滚动 还要做到图片和文字和下图中一样排 各位大神请问要怎么弄
展开
1个回答
展开全部
首先,你的会android的 线性布局Linearlayout 方便排版,ScrollView 布局时可以滑动的!
你的知道listview 可以输出循环,但是在ScrollView 中需要重写。
还是参考代码吧
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical "> //vertical 是垂直,horizontal 是水平
<ImageView
android:id="@+id/photo1"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_margin="5dp"
android:src="@drawable/plan1"/>
<TextView
android:id="@+id/title1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="训练须知"
android:textSize="25dp"
android:textColor="@color/cbrown"
android:layout_gravity="center"
android:layout_marginLeft="10dp"/>
</LinearLayout>
你的知道listview 可以输出循环,但是在ScrollView 中需要重写。
还是参考代码吧
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical "> //vertical 是垂直,horizontal 是水平
<ImageView
android:id="@+id/photo1"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_margin="5dp"
android:src="@drawable/plan1"/>
<TextView
android:id="@+id/title1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="训练须知"
android:textSize="25dp"
android:textColor="@color/cbrown"
android:layout_gravity="center"
android:layout_marginLeft="10dp"/>
</LinearLayout>
追问
兄弟 能不能补充一点 LinearLayout 不能滚动的吧
追答
你在用ScrollView 布局就可以实现滑动了!
包含线性布局!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |