Android Emulator结果显示

时间:2014-03-27 15:24:00

标签: java android xml emulation

我创建了一个简单的应用程序,它具有字符串输入(编辑文本),并在使用文本视图单击按钮时显示字符串。我用过垂直滚动视图,问题是隐藏了右侧角色。这是我使用的代码

public class MainActivity extends Activity {
    TextView text;
    EditText txt;
    Button btn;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        text = (TextView)findViewById(R.id.dis);
        txt = (EditText)findViewById(R.id.mesg);
        btn = (Button)findViewById(R.id.button);
    }

    public void Display(View v) {
        String msg=txt.getText().toString();
        text.setText(msg);
        //text.setText("yes");
    }
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#ff000000"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TableLayout
            android:id="@+id/content"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:baselineAligned="true"
            android:gravity="bottom" >

            <TableRow android:padding="10dp" >

                <EditText
                    android:id="@+id/mesg"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="#ffffff"
                    android:ems="10"
                    android:hint="Message"
                    android:text="" >
                </EditText>
            </TableRow>

            <TableRow android:padding="10dp" >

                <Button
                    android:id="@+id/button"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:onClick="Display"
                    android:text="Dispaly" />
            </TableRow>

            <TableRow android:padding="10dp" >

                <TextView
                    android:id="@+id/dis"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text=""
                    android:textColor="#ffffff" />
            </TableRow>
        </TableLayout>
    </LinearLayout>

</ScrollView>

As you see the 's' in says is hidden and also sometimes it happens with text view

如你所见&#39;在说隐藏,有时它发生在文本视图

2 个答案:

答案 0 :(得分:0)

试试这个..

android:padding="5dp"添加填充EditText

<EditText
    android:id="@+id/mesg"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#ffffff"
    android:padding="5dp"
    android:ems="10"
    android:hint="Message"
    android:text="" >
</EditText>

答案 1 :(得分:0)

从EditText中删除android:ems指令。