Informática, perguntado por ivts, 11 meses atrás

O LinearLayout é um dos layouts mais simples e um dos mais utilizados pelos desenvolvedores. Apesar de sua facilidade de implementação, é possível construir layouts bastante robustos com ele. Sua principal característica está em organizar os elementos em uma única direção.
Sobre o LinearLayout, considere a diagramação abaixo: Print do celular
Assinale a alternativa cujo código-fonte implementa corretamente o diagrama apresentado.
Escolha uma: a. <?xml version="1.0" encoding="utf-8"?>
android:layout_height="match_parent" >
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cadastrar cliente"
android:gravity="middle" />
android:id="@+id/editTextNome"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nome" />
android:id="@+id/editTextFone1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Telefone 1" /> android:id="@+id/editTextFone2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Telefone 2" />
android:id="@+id/buttonCadastrar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="Cadastrar" /> b. <?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent" android:layout_height="match_parent"
android:orientation="vertical">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cadastrar cliente"
android:gravity="center" />
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nome" />
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
android:id="@+id/editTextFone1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Telefone 1" />
android:id="@+id/editTextFone2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Telefone 2" />

android:id="@+id/buttonCadastrar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:text="Cadastrar" />

c.
<?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cadastrar cliente"
android:gravity="center" />
android:id="@+id/editTextNome"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nome" />
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="2"
android:orientation="horizontal">
android:id="@+id/editTextFone1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Telefone 1" />
android:id="@+id/editTextFone2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Telefone 2" />

android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="Cadastrar" />

d. <?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cadastrar cliente"
android:gravity="center" />
android:id="@+id/editTextNome"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Nome" />
android:id="@+id/editTextFone1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:text="Telefone 1" />
android:id="@+id/editTextFone2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="Telefone 2" />
android:id="@+id/buttonCadastrar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:text="Cadastrar" />
e.
<?xml version="1.0" encoding="utf-8"?>
android:layout_width="match_parent"
android:layout_height="match_parent" ">
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Cadastrar cliente"
android:gravity="middle" />
android:id="@+id/editTextNome"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Nome" />
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="2"
android:orientation="horizontal">
android:id="@+id/editTextFone1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Telefone 1" /> android:id="@+id/editTextFone2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Telefone 2" />

Soluções para a tarefa

Respondido por RCD722
62

Resposta:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout  

   android:layout_width="match_parent"

   android:layout_height="match_parent"

   android:orientation="vertical">

   <TextView

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:text="Cadastrar cliente"

       android:gravity="center" />

   <EditText

       android:id="@+id/editTextNome"

       android:layout_width="match_parent"

       android:layout_height="wrap_content"  

       android:text="Nome" />

   <LinearLayout

       android:layout_width="match_parent"

       android:layout_height="wrap_content"

       android:weightSum="2"  

       android:orientation="horizontal">

       <EditText

           android:id="@+id/editTextFone1"

           android:layout_width="0dp"

           android:layout_height="wrap_content"

           android:layout_weight="1"  

           android:text="Telefone 1" />

       <EditText

           android:id="@+id/editTextFone2"

           android:layout_width="0dp"

           android:layout_height="wrap_content"

           android:layout_weight="1"  

           android:text="Telefone 2" />

   </LinearLayout>

   <Button

       android:id="@+id/buttonCadastrar"

       android:layout_width="wrap_content"

       android:layout_height="wrap_content"

       android:layout_gravity="right"  

       android:text="Cadastrar" />

</LinearLayout>

Explicação:

Corrigido pelo AVA.

Respondido por nicolefc22
7

O código fonte, utilizado para produzir LinearLayout é:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout  

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical">

  <TextView

      android:layout_width="match_parent"

      android:layout_height="wrap_content"

      android:text="Cadastrar cliente"

      android:gravity="center" />

  <EditText

      android:id="@+id/editTextNome"

      android:layout_width="match_parent"

      android:layout_height="wrap_content"  

      android:text="Nome" />

  <LinearLayout

      android:layout_width="match_parent"

      android:layout_height="wrap_content"

      android:weightSum="2"  

      android:orientation="horizontal">

      <EditText

          android:id="@+id/editTextFone1"

          android:layout_width="0dp"

          android:layout_height="wrap_content"

          android:layout_weight="1"  

          android:text="Telefone 1" />

      <EditText

          android:id="@+id/editTextFone2"

          android:layout_width="0dp"

          android:layout_height="wrap_content"

          android:layout_weight="1"  

          android:text="Telefone 2" />

  </LinearLayout>

  <Button

      android:id="@+id/buttonCadastrar"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:layout_gravity="right"  

      android:text="Cadastrar" />

</LinearLayout>

Linguagem de programação

Sabemos que o LinearLayout é a estrutura mais utilizada pelos programadores, por ser simples e fácil, produzindo layout robustos.

As características são:

  • organização em uma única direção
  • simplicidade
  • facilidade

O código fonte utilizado para a programação é:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout  

  android:layout_width="match_parent"

  android:layout_height="match_parent"

  android:orientation="vertical">

  <TextView

      android:layout_width="match_parent"

      android:layout_height="wrap_content"

      android:text="Cadastrar cliente"

      android:gravity="center" />

  <EditText

      android:id="@+id/editTextNome"

      android:layout_width="match_parent"

      android:layout_height="wrap_content"  

      android:text="Nome" />

  <LinearLayout

      android:layout_width="match_parent"

      android:layout_height="wrap_content"

      android:weightSum="2"  

      android:orientation="horizontal">

      <EditText

          android:id="@+id/editTextFone1"

          android:layout_width="0dp"

          android:layout_height="wrap_content"

          android:layout_weight="1"  

          android:text="Telefone 1" />

      <EditText

          android:id="@+id/editTextFone2"

          android:layout_width="0dp"

          android:layout_height="wrap_content"

          android:layout_weight="1"  

          android:text="Telefone 2" />

  </LinearLayout>

  <Button

      android:id="@+id/buttonCadastrar"

      android:layout_width="wrap_content"

      android:layout_height="wrap_content"

      android:layout_gravity="right"  

      android:text="Cadastrar" />

</LinearLayout>

Aprenda mais sobre linguagem de programação, acessando em: https://brainly.com.br/tarefa/29246176

Anexos:
Perguntas interessantes