Buttons look messy in Android Studio when I run the application on Tablet“Invalid signature file” when attempting to run a .jarHow do I discover memory usage of my application in Android?Singletons vs. Application Context in Android?How to programmatically set drawableLeft on Android button?Get application version programmatically in androidHow do I play an audio file in Android?Android Studio installation on Windows 7 fails, no JDK foundCan Android Studio be used to run standard Java projects?Error when starting a new activity AndroidAndroid changing Floating Action Button color

What does the phrase "building hopping chop" mean here?

Adjective for 'made of pus' or 'corrupted by pus' or something of something of pus

Why do changes to /etc/hosts take effect immediately?

What's the safest way to inform a new user of their password on an invite-only website?

Indexes getting highly fragmented during normal usage of system

Chords behaving as a melody

Are all commands with an optional argument fragile?

Should I share with a new service provider a bill from its competitor?

Could a Weapon of Mass Destruction, targeting only humans, be developed?

Golf the smallest circle!

I hit a pipe with a mower and now it won't turn

How can my story take place on Earth without referring to our existing cities and countries?

How can I write a panicked scene without it feeling like it was written in haste?

Is this homebrew Half-Phoenix race balanced?

Who voices the character "Finger" in The Fifth Element?

Boolean Difference with Offset?

Why is Japan trying to have a better relationship with Iran?

What exactly did Ant-Man see that made him say that their plan worked?

Is the location of an aircraft spoiler really that vital?

What game is this character in the Pixels movie from?

Is there a legal way for US presidents to extend their terms beyond four years?

Step into the Octagram

Can I travel from Germany to England alone as an unaccompanied minor?

Why does the same classical piece sound like it's in a different key in different recordings?



Buttons look messy in Android Studio when I run the application on Tablet


“Invalid signature file” when attempting to run a .jarHow do I discover memory usage of my application in Android?Singletons vs. Application Context in Android?How to programmatically set drawableLeft on Android button?Get application version programmatically in androidHow do I play an audio file in Android?Android Studio installation on Windows 7 fails, no JDK foundCan Android Studio be used to run standard Java projects?Error when starting a new activity AndroidAndroid changing Floating Action Button color






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








5















I'm trying to design 4 rows and 3 column of same size buttons. It does look fine in Android Studio when I click on "Infer Constraints" - But when I run it on my tablet it looks messy! What did I do wrong?
I've added xml code for 6 buttons (not the whole 12 because it's too long).



I expected the output to look like this:
capture from Android Studio



but the actual output is buttons which are not the same size and order
enter image description here



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MemoryGame"
tools:layout_editor_absoluteY="81dp">

<Spinner
android:id="@+id/muses_spinner"
android:layout_width="0dp"
android:layout_height="29dp"
android:layout_marginTop="48dp"
android:layout_marginBottom="38dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/connect_button" />

<Button
android:id="@+id/button0_0"
android:layout_width="0dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="124dp"
android:layout_marginRight="124dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_0"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_0"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_1"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button0_0" />

<Button
android:id="@+id/button0_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:layout_marginBottom="1dp"
android:text="BUTTON"
app:layout_constraintBottom_toTopOf="@+id/button1_1"
app:layout_constraintEnd_toStartOf="@+id/button0_2"
app:layout_constraintStart_toEndOf="@+id/button0_0"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toEndOf="@+id/button1_0"
app:layout_constraintTop_toBottomOf="@+id/button0_1" />

<Button
android:id="@+id/button1_2"
android:layout_width="0dp"
android:layout_height="103dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:text="Button"
app:layout_constraintBaseline_toBaselineOf="@+id/button1_1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button0_0" />

<Button
android:id="@+id/button0_2"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button1_1"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/connect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="302dp"
android:layout_marginLeft="302dp"
android:layout_marginBottom="64dp"
android:text="connect"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

<Button
android:id="@+id/refresh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginEnd="203dp"
android:layout_marginRight="203dp"
android:layout_marginBottom="1dp"
android:text="refresh"
app:layout_constraintBottom_toTopOf="@+id/muses_spinner"
app:layout_constraintEnd_toStartOf="@+id/connect_button"
app:layout_constraintStart_toStartOf="@+id/muses_spinner" />
</android.support.constraint.ConstraintLayout>









share|improve this question
























  • Can you maybe add a screenshot of what it does look like?

    – Avery
    Mar 25 at 14:56











  • Yea sure - I added a screenshot to the original post of the actual output.

    – Yalco
    Mar 25 at 18:00

















5















I'm trying to design 4 rows and 3 column of same size buttons. It does look fine in Android Studio when I click on "Infer Constraints" - But when I run it on my tablet it looks messy! What did I do wrong?
I've added xml code for 6 buttons (not the whole 12 because it's too long).



I expected the output to look like this:
capture from Android Studio



but the actual output is buttons which are not the same size and order
enter image description here



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MemoryGame"
tools:layout_editor_absoluteY="81dp">

<Spinner
android:id="@+id/muses_spinner"
android:layout_width="0dp"
android:layout_height="29dp"
android:layout_marginTop="48dp"
android:layout_marginBottom="38dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/connect_button" />

<Button
android:id="@+id/button0_0"
android:layout_width="0dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="124dp"
android:layout_marginRight="124dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_0"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_0"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_1"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button0_0" />

<Button
android:id="@+id/button0_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:layout_marginBottom="1dp"
android:text="BUTTON"
app:layout_constraintBottom_toTopOf="@+id/button1_1"
app:layout_constraintEnd_toStartOf="@+id/button0_2"
app:layout_constraintStart_toEndOf="@+id/button0_0"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toEndOf="@+id/button1_0"
app:layout_constraintTop_toBottomOf="@+id/button0_1" />

<Button
android:id="@+id/button1_2"
android:layout_width="0dp"
android:layout_height="103dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:text="Button"
app:layout_constraintBaseline_toBaselineOf="@+id/button1_1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button0_0" />

<Button
android:id="@+id/button0_2"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button1_1"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/connect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="302dp"
android:layout_marginLeft="302dp"
android:layout_marginBottom="64dp"
android:text="connect"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

<Button
android:id="@+id/refresh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginEnd="203dp"
android:layout_marginRight="203dp"
android:layout_marginBottom="1dp"
android:text="refresh"
app:layout_constraintBottom_toTopOf="@+id/muses_spinner"
app:layout_constraintEnd_toStartOf="@+id/connect_button"
app:layout_constraintStart_toStartOf="@+id/muses_spinner" />
</android.support.constraint.ConstraintLayout>









share|improve this question
























  • Can you maybe add a screenshot of what it does look like?

    – Avery
    Mar 25 at 14:56











  • Yea sure - I added a screenshot to the original post of the actual output.

    – Yalco
    Mar 25 at 18:00













5












5








5








I'm trying to design 4 rows and 3 column of same size buttons. It does look fine in Android Studio when I click on "Infer Constraints" - But when I run it on my tablet it looks messy! What did I do wrong?
I've added xml code for 6 buttons (not the whole 12 because it's too long).



I expected the output to look like this:
capture from Android Studio



but the actual output is buttons which are not the same size and order
enter image description here



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MemoryGame"
tools:layout_editor_absoluteY="81dp">

<Spinner
android:id="@+id/muses_spinner"
android:layout_width="0dp"
android:layout_height="29dp"
android:layout_marginTop="48dp"
android:layout_marginBottom="38dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/connect_button" />

<Button
android:id="@+id/button0_0"
android:layout_width="0dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="124dp"
android:layout_marginRight="124dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_0"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_0"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_1"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button0_0" />

<Button
android:id="@+id/button0_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:layout_marginBottom="1dp"
android:text="BUTTON"
app:layout_constraintBottom_toTopOf="@+id/button1_1"
app:layout_constraintEnd_toStartOf="@+id/button0_2"
app:layout_constraintStart_toEndOf="@+id/button0_0"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toEndOf="@+id/button1_0"
app:layout_constraintTop_toBottomOf="@+id/button0_1" />

<Button
android:id="@+id/button1_2"
android:layout_width="0dp"
android:layout_height="103dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:text="Button"
app:layout_constraintBaseline_toBaselineOf="@+id/button1_1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button0_0" />

<Button
android:id="@+id/button0_2"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button1_1"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/connect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="302dp"
android:layout_marginLeft="302dp"
android:layout_marginBottom="64dp"
android:text="connect"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

<Button
android:id="@+id/refresh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginEnd="203dp"
android:layout_marginRight="203dp"
android:layout_marginBottom="1dp"
android:text="refresh"
app:layout_constraintBottom_toTopOf="@+id/muses_spinner"
app:layout_constraintEnd_toStartOf="@+id/connect_button"
app:layout_constraintStart_toStartOf="@+id/muses_spinner" />
</android.support.constraint.ConstraintLayout>









share|improve this question
















I'm trying to design 4 rows and 3 column of same size buttons. It does look fine in Android Studio when I click on "Infer Constraints" - But when I run it on my tablet it looks messy! What did I do wrong?
I've added xml code for 6 buttons (not the whole 12 because it's too long).



I expected the output to look like this:
capture from Android Studio



but the actual output is buttons which are not the same size and order
enter image description here



<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MemoryGame"
tools:layout_editor_absoluteY="81dp">

<Spinner
android:id="@+id/muses_spinner"
android:layout_width="0dp"
android:layout_height="29dp"
android:layout_marginTop="48dp"
android:layout_marginBottom="38dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/connect_button" />

<Button
android:id="@+id/button0_0"
android:layout_width="0dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="124dp"
android:layout_marginRight="124dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_0"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_0"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="5dp"
android:layout_marginRight="5dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_1"
app:layout_constraintHorizontal_chainStyle="spread_inside"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button0_0" />

<Button
android:id="@+id/button0_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:layout_marginBottom="1dp"
android:text="BUTTON"
app:layout_constraintBottom_toTopOf="@+id/button1_1"
app:layout_constraintEnd_toStartOf="@+id/button0_2"
app:layout_constraintStart_toEndOf="@+id/button0_0"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/button1_1"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="1dp"
android:layout_marginRight="1dp"
android:text="Button"
app:layout_constraintEnd_toStartOf="@+id/button1_2"
app:layout_constraintStart_toEndOf="@+id/button1_0"
app:layout_constraintTop_toBottomOf="@+id/button0_1" />

<Button
android:id="@+id/button1_2"
android:layout_width="0dp"
android:layout_height="103dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:text="Button"
app:layout_constraintBaseline_toBaselineOf="@+id/button1_1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button0_0" />

<Button
android:id="@+id/button0_2"
android:layout_width="124dp"
android:layout_height="97dp"
android:layout_marginStart="1dp"
android:layout_marginLeft="1dp"
android:layout_marginTop="1dp"
android:layout_marginEnd="7dp"
android:layout_marginRight="7dp"
android:layout_marginBottom="1dp"
android:text="Button"
app:layout_constraintBottom_toTopOf="@+id/button1_2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/button1_1"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/connect_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="302dp"
android:layout_marginLeft="302dp"
android:layout_marginBottom="64dp"
android:text="connect"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent" />

<Button
android:id="@+id/refresh_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="5dp"
android:layout_marginLeft="5dp"
android:layout_marginEnd="203dp"
android:layout_marginRight="203dp"
android:layout_marginBottom="1dp"
android:text="refresh"
app:layout_constraintBottom_toTopOf="@+id/muses_spinner"
app:layout_constraintEnd_toStartOf="@+id/connect_button"
app:layout_constraintStart_toStartOf="@+id/muses_spinner" />
</android.support.constraint.ConstraintLayout>






java






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 17:59







Yalco

















asked Mar 25 at 12:46









YalcoYalco

262 bronze badges




262 bronze badges












  • Can you maybe add a screenshot of what it does look like?

    – Avery
    Mar 25 at 14:56











  • Yea sure - I added a screenshot to the original post of the actual output.

    – Yalco
    Mar 25 at 18:00

















  • Can you maybe add a screenshot of what it does look like?

    – Avery
    Mar 25 at 14:56











  • Yea sure - I added a screenshot to the original post of the actual output.

    – Yalco
    Mar 25 at 18:00
















Can you maybe add a screenshot of what it does look like?

– Avery
Mar 25 at 14:56





Can you maybe add a screenshot of what it does look like?

– Avery
Mar 25 at 14:56













Yea sure - I added a screenshot to the original post of the actual output.

– Yalco
Mar 25 at 18:00





Yea sure - I added a screenshot to the original post of the actual output.

– Yalco
Mar 25 at 18:00












1 Answer
1






active

oldest

votes


















0














Try use another typ of layout. For example Linear Layout, Table Layout
P.S. i´m trying past some code but this f.. page not permited.



Layout






share|improve this answer























  • Thanks but still not working :-

    – Yalco
    Mar 26 at 16:09










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55338158%2fbuttons-look-messy-in-android-studio-when-i-run-the-application-on-tablet%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Try use another typ of layout. For example Linear Layout, Table Layout
P.S. i´m trying past some code but this f.. page not permited.



Layout






share|improve this answer























  • Thanks but still not working :-

    – Yalco
    Mar 26 at 16:09















0














Try use another typ of layout. For example Linear Layout, Table Layout
P.S. i´m trying past some code but this f.. page not permited.



Layout






share|improve this answer























  • Thanks but still not working :-

    – Yalco
    Mar 26 at 16:09













0












0








0







Try use another typ of layout. For example Linear Layout, Table Layout
P.S. i´m trying past some code but this f.. page not permited.



Layout






share|improve this answer













Try use another typ of layout. For example Linear Layout, Table Layout
P.S. i´m trying past some code but this f.. page not permited.



Layout







share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 25 at 20:09









Tomasz VizaintTomasz Vizaint

56 bronze badges




56 bronze badges












  • Thanks but still not working :-

    – Yalco
    Mar 26 at 16:09

















  • Thanks but still not working :-

    – Yalco
    Mar 26 at 16:09
















Thanks but still not working :-

– Yalco
Mar 26 at 16:09





Thanks but still not working :-

– Yalco
Mar 26 at 16:09








Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.







Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55338158%2fbuttons-look-messy-in-android-studio-when-i-run-the-application-on-tablet%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴