• 信息反馈-冲刺02


    昨天我做了学生登录后勤服务的界面;学生遇到问题需要上传图片,备注具体位置以及手机号

    遇到问题:如何调用本地相机或从本地选取图片上传;

    源代码:

    <?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_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="com.example.helloworld.MainActivity"
        android:background="@drawable/fense">
        <RelativeLayout
            android:id="@+id/text11"
            android:layout_width="match_parent"
            android:layout_height="450dp"
            android:padding="100dp">
            <Button
                android:id="@+id/btn_xiangji"
                android:layout_width="150dp"
                android:layout_height="150dp"
                android:background="@drawable/xiangji">
            </Button>
        </RelativeLayout>
        <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@id/text11">
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">
                        <Button
                             android:id="@+id/btn_textview1"
                             android:layout_width="180dp"
                             android:layout_height="match_parent"
                             android:text="操作说明"
                             android:background="@drawable/lvse"/>
                        <Button
                            android:id="@+id/btn_textview2"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:text="我的服务"
                            android:layout_toRightOf="@id/btn_textview1"
                        android:background="@drawable/lvse"/>
                </LinearLayout>
        </RelativeLayout>
    </RelativeLayout>
  • 相关阅读:
    cocos2d-x 3.0 事件分发机制
    cocos2d-x Schedule详解
    OSG设置警告等级
    OSG四元数与欧拉角之间的转换
    编译OSG_FBX插件
    RakNet发送与接收数据
    RakNet基本教程
    IE不能上网,但是其他浏览器可以
    OSG计时器与时间戳
    添加OSG各种事件处理器
  • 原文地址:https://www.cnblogs.com/sengzhao666/p/10801050.html
Copyright © 2020-2023  润新知