我的活动有以下布局
http://192.168.100.8:8000
然后我动态地用我的活动更新<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_guide"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="media.ubique.heterotopia.Guide">
<TextView
android:id="@+id/guide_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/guide_story"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/guide_title" />
<Button
android:text="@string/back_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/back_button"
android:layout_below="@id/guide_story" />
</RelativeLayout>
的内容,文字摘录太大而不适合单个屏幕。生成的应用程序仅显示部分文本 - 最后根本不显示按钮。我想要的是一个滚动屏幕,以便整个内容存在。我尝试将内容封装在:
TextView
没有运气 - 我确实滚动但<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!--.....-->
</LinearLayout>
</ScrollView>
只显示部分文字。
答案 0 :(得分:1)
将属性orientation="vertical"
添加到LinearLayout。
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<!--.....-->
</LinearLayout>
</ScrollView>
答案 1 :(得分:1)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_guide"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="media.ubique.heterotopia.Guide">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/guide_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/guide_story"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:text="@string/back_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/back_button"
/>
</LinearLayout>
</ScrollView>
答案 2 :(得分:0)
在ScrollView中使用具有垂直方向的LinearLayout而不是RelativeLayout
答案 3 :(得分:0)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_guide"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="media.ubique.heterotopia.Guide">
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_padding="10dp"
android:margin_bottom="50dp">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/guide_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/guide_story"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>
<Button
android:text="@string/back_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/back_button"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
答案 4 :(得分:0)
您应该简单地动态缩小文本的大小。 或者这里有适合您的样品。根据您的要求进行修改。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/app_bar_main">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="false">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="10dp"
android:weightSum="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff"
>
//add here
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
>
//add here
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff"
>
//add here
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</ScrollView>
</RelativeLayout>