Questions tagged [android-tablet-layout]

A layout defines the visual structure for a user interface, such as the UI for an activity, fragment or app widget. This tag is used especially for tablet UI.

16 questions
3
votes
0 answers

How do I show a blank screen with a message on my app launch instead of splashscreen on tablets?

I am planning to restrict my app to tablets but in the sense that I don't want to add compatibility screen etc. options in manifest. Currently, on app launch my manifest has a splashscreenactivity which launches for about 3 seconds then moves on to…
2
votes
2 answers

Unable to have two pane mode for tablet in android

I am trying to get a two pane display for the android tablet I was trying to test the application on a emulator (Nexus 10). I created an activity_man.xml for the same (in folder layout-sw600dp). It contains a FrameLayout exclusive to it with the…
1
vote
2 answers

Android mobile in landscape is picking up tablet layout

I have a tab-layout in my Android app where I have two different designs for mobile vs tablet. I have followed this page to create two different layout files: res/layout/myLayout.xml (this is for mobile app) res/layout-w600dp/myLayout.xml (this is…
1
vote
1 answer

Difference between creating a tablet layout variation and creating a folder for tablet layout

Good day, I would like to ask what's the difference between creating a tablet layout variation and creating a folder for layouts (like: "res/layout-w600dp/" )? I'm so sorry I'm new in making android app for small (cellular phones/android phones)…
KoralReef
  • 41
  • 7
1
vote
1 answer

Android TableLayout in a ListView, mysterious column shrinking

I am using TableLayout within a ListView. The data I'm presenting is tabular in nature and the TableLayout seems like a good way to ensure that the columns line up as desired. This approach worked well most of the time - see below. Desired…
Rich
  • 201
  • 3
  • 9
1
vote
0 answers

Support for 8" and 9" tablets

Quoting Supporting Multiple Screens | Android Developers 320dp: a typical phone screen (240x320 ldpi, 320x480 mdpi, 480x800 hdpi, etc). 480dp: a tweener tablet like the Streak (480x800 mdpi). 600dp: a 7” tablet (600x1024 mdpi). 720dp: a 10”…
X09
  • 3,827
  • 10
  • 47
  • 92
1
vote
1 answer

How to achieve this layout on tablet?

I'm trying to create a good UI interface for tablet / large screen device. The perfect solution would be the one running on GMail app (see screenshot below). As far as I can understand, the layout is composed like this:
JJ86
  • 5,055
  • 2
  • 35
  • 64
0
votes
0 answers

When we changed the orientation Portrait to Landscape and vice-versa in Fragment then it can't take the design from specific layout folder

I am having problems in Fragment when Orientation changed from Portrait to Landscape and vice-versa then layout design will not take it from specific layout. Example Currently in my project have different layouts as below layout-sw600dp (Generally…
0
votes
1 answer

Updating to a table in Android results in duplication of shown records

Working in Android, I have a table on a tab that I am pulling from an internal database. After entering data on another tab, I would like for the table to be updated to show the new records. Currently I am calling the following, public void…
portsample
  • 1,986
  • 4
  • 19
  • 35
0
votes
1 answer

which folder will give the tablet images android

In android we have hdpi, mdpi, xhdpi, xxhdpi, xxxhdpi, Which are all the folder will give the phone images and Which are all the folder will give the tablet images. Could any please help to understand?
Happy
  • 1,031
  • 10
  • 26
0
votes
1 answer

Android 7.0 Settings> Display size set to small impact on current implementation

My current implementation to support multiple devices when specific layouts are needed for mobile, tablets (7' and 10') was to have separate layouts in layout normal, large , xlarge folders respectively. However, from Android 7.0, user can change…
0
votes
1 answer

Need a working Example of Handling large and small screens on Android

I tried a lot for handling multiple Tablet and handset screens on Android but could not get right way of doing this. In some cases I am getting errors and some does not work. I also posted Stack Question but did not receive satisfied result. I want…
user6750923
  • 469
  • 2
  • 11
  • 22
0
votes
1 answer

Cannot add vertical line(divider) in TableLayout Android

i need to add vertical border in TableLayout. I have searched the internet and tried many solutions but none of them are working. Below is my code:
-1
votes
1 answer

Run AppAndroid on tablet and mobile phone support multi screen

i need that my app Android will be supported by 2 devices phone and tablet . i can find library to integer in my app and supported all screen size. Thanks
1
2