就是一个页面塞不下,纵向或者横向可以滑动。
去布置一下页面
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ScrollView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/scroll" android:scrollbars="none" ><!-- scrollbars隐藏滚动条 HorizontalScrollView标签是横向 --> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/content" android:textSize="40dp" /> </ScrollView> </LinearLayout>
随便塞点文字(比如rewrite)塞到string
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">deemo</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="content"> 欧若拉 可被称为"生命力"、"万能之力"或者"奇迹",高浓度时表现为极光色的"欧若拉",低浓度时则是不可见之力,只要消耗奥罗拉,就没有做不成的事情。对于完整的生命而言,生命力等同于其寿命。 键 在生命进化的过程中极为"关键"的角色,能够发动救济。 改写能力者 拥有特殊能力"Rewrite"的人,能够随意地改变、强化自己的身体和力量,但效果无法逆转。 能力者 又被称为"超人"、"狩猎者",通过消耗生命力来强化自己的技能。 狩猎系:擅长跟踪、投射、设置陷阱的能力者,主要使用远程武器。 采伐系:擅长近身战的能力者,主要使用近战武器。 污染系:可自由操纵体内器官、组织的能力者。 守护者(Guardian) 能力者所属的组织,有着完整的军事制度及相关的后勤产业,和星球相比更重视人类。 魔物使 通过消耗生命力来操纵魔物。性格愈消极,可操纵的魔物就愈强。 魔物 魔物使操纵的物体,并非完整的生命,当死亡或失去生命力就会消失。 盖亚(Gaia) 魔物使所属的组织,和人类相比更重视星球。核心为"圣女会",由于接近宗教组织,因此组织相对松散,只通过人情和宗教的力量来进行团结。 德鲁伊(Druid) 不属于守护者或盖亚,他们的使命为守护"键"和能量点,德鲁伊的魔物使无需消耗自己的生命力来操纵魔物,而是消耗来自能量点的生命力。 </string> </resources>
然后主文件
package com.example.deemo; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends Activity { private TextView tv; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); tv = (TextView) findViewById(R.id.content); tv.setText(getResources().getString(R.string.content)); } }
其实一初始化就可以用了。
时间: 2024-09-29 22:14:16