如何创建终端/控制台

时间:2016-01-23 17:27:29

标签: java android xml

我想创建一个终端/控制台,用户可以在其中输入命令。我知道java,但我是xml的新手,所以我想知道如何在文本下生成文本,如果它变长,它应该是可滚动的,这是一张图片:

enter image description here

这是我的xml cpde:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#d1d1d1">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:weightSum="1">

        <EditText
            android:layout_width="175dp"
            android:layout_height="wrap_content"
            android:id="@+id/consoleText"
            android:layout_gravity="bottom"
            android:hint="Command"
            android:layout_weight="0.99" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Send"
            android:id="@+id/sendButton"
            android:layout_gravity="bottom" />
    </LinearLayout>

</LinearLayout>

这是我获取文本的代码:

public class FragmentConsole extends Fragment{
    EditText text;
    Button button;
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.console,
                container, false);
        button = (Button) view.findViewById(R.id.sendButton);
        text = (EditText)view.findViewById(R.id.consoleText);
        button.setOnClickListener(new View.OnClickListener()
        {
            @Override
            public void onClick(View v)
            {
                Log.v("EditText", text.getText().toString());
            }
        });
        return view;
    }
}

所以我会使用一些photoshopped图片来显示我想要做的事情,所以每次我输入一个命令,在这种情况下,我将使用示例“命令一”,“命令二”和&amp; “命令三”,所以如果我在每个之后单击发送按钮,他们应该像这样:

enter image description here

所以如果文字到达这个黑条:

enter image description here

上面添加的文本应该在滚动视图中被推送,并且每个新文本也将获得滚动视图的一部分,以便您可以稍后滚动查看命令。 我知道这是一个很长的帖子,我希望很清楚我想做什么,有人会知道我该怎么做。所以提前谢谢:)

1 个答案:

答案 0 :(得分:2)

对于此任务,您应该考虑使用ListView并在此视图中将每个命令添加为新行。它也会照顾滚动,你的文字不会与你的EditText相符。