Questions regarding Views in Android. Views may be defined in Android Layout XML or in Java code. Questions using this tag involve general View practices or advice. With regard to specific Views, refer to the info for this tag. For questions regarding layout, use [tag:android-layout].

learn more… | top users | synonyms

0
votes
1answer
17 views

Adding a Vertical Line to the SimpleCursorAdapter ListView

I have a ListView, and the list contain a Layout with View Component added to my RelativeLayout : <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
10 views

Activity switch and Async Android

I have 2 activities: MainActivity which is associated with main.xml layout (app "Home" screen) and AboutActivity which is associated with about.xml layout (app "About" screen). While in ...
0
votes
0answers
9 views

Read metadata from local apk

Hi how can i read the metadata from an local apk stored in device.I can get the info from installed apk ..but how to get thta from local stored apk?? ia am doing below and i am getting null. ...
0
votes
0answers
24 views

dynamically adding views and toasting it

I'm adding views dynamically. Mean to say that, Initially there is one EditText, Button Add, Button Submit. 1.OnClick of Button Add I'm inflating new layout which has one EditTextand Button Remove. ...
0
votes
1answer
31 views

Run code before onCreateView

I want to run some code in a Fragment before the onCreateView method is called. I want to show an AlertDialog and I want to call onCreateView the first time if the user clicks on the positive button. ...
-1
votes
0answers
10 views

distinguish between the client and server Android socket connection [closed]

I have a client-server socket connection in android. So after deciding which phone is a server and which one is client(decided by clicking either the server or the client button), i want to open a ...
0
votes
0answers
20 views

Arabic letters coming as special characters

Hi i am recieving the text from server which is arabic and im encoding the input stream as below String strInputStream = Utility.Service.inputStreamToString(n_oInputStream); try { ...
0
votes
0answers
12 views

Dynamic Android Button Styling

I want to style a button in java. Need to place a background Image and Apearance Changes. But its not picking up the style: LinearLayout linearLayout = (LinearLayout)findViewById(R.id.dynamicpan); ...
-5
votes
1answer
35 views

How to construct a button on runtime (Android) [closed]

There's nothing on this particular feature of Android in the documentation (for example here: http://developer.android.com/reference/android/widget/Button.html#Button(android.content.Context) How do ...
0
votes
2answers
15 views

Android: Line-limited textview with “…” to show that there is more content

I am displaying a long (random) text in a TextView. I want to show 3 lines in this TextView and show dots (...) if there is more content. I know I can limit the lines of a TextView with minLines and ...
0
votes
1answer
28 views

Place view on top and between two views

Trying to figure out to overcome this little problem. Below, on the left side, is a sample of the view that I'm trying to implement for an app. On the right side is the view that I'm ending up with. ...
1
vote
2answers
53 views

LinearLayout not rendering

I want to create a login screen. I want to have the heading at the top, leave some white space and then have the user name and passwords each in one line. Then, I want to leave some more white space ...
0
votes
4answers
29 views

Edit text not scrollable inside scroll view

I have a Scroll view inside which is an EditText which is set to scroll vertically. But it does not scrolls. Instead the whole layout scrolls, Whenever i try to scroll the EditText. Below is the code ...
0
votes
4answers
24 views

Difference between setVisibility() and setAlpha()

What is the difference between setVisibility(View.GONE) and setAlpha(0f)?
-1
votes
0answers
29 views

TextView Text in next line

i have a text view and the text is coming from server and then at the end of that line i have a button..so if my text view is too long my text is overlapped by that button.so how can i get that half ...
2
votes
1answer
34 views

Why does bringToFront works only once

bringToFront works once and after that it no longer works. Why? when you click once it brings that view to front but when you try to bring back the view it no longer works . The touches/clicks work ...
0
votes
1answer
58 views

View too large to fit into drawing cache when calling getDrawingCache()

I'm trying to take a screenshot of the contents of a LinearLayout. The layout contains a scrollview that can be of variable height/width. This code works fine when the layout is not too big (i.e. ...
1
vote
1answer
31 views

SYSTEM_UI_FLAG_LOW_PROFILE cannot be resolved or is not a field for google threadsample

I have import the threadsample code from https://developer.android.com/training/multiple-threads/index.html, but I got errors after I import it. They are : SYSTEM_UI_FLAG_LOW_PROFILE cannot be ...
0
votes
1answer
21 views

Getting Height and Width for a View Failure

I am implementing a new class that extends CheckBox In the constructor I am giving it a specific dimensions like this: setHeight(size); setWidth(size); measure(size, size); But whenever I call ...
0
votes
1answer
27 views

WindowManager.LayoutParams alpha issue

In my app, I have a service in which I create a view that I display by using WindowManger : mFilter = new View(this); ...
0
votes
1answer
20 views

How to retrieve references of views which are defined programatically

Ideally One can retrieve a View reference(in an xml file) through findViewById method. However i have a class where i have instantiated all views public View Initialise(Context context){ ...
0
votes
1answer
27 views

android dynamic generate edittext and use its values

My app. has a button which if it's presses a 2 editText fields apear , and if it's pressed again 2 other editText fields apear and so on. I want to save all the data in this fields in arrayList (or ...
2
votes
1answer
147 views

java.lang.IllegalArgumentException: pointerIndex out of range Exception - dispatchTouchEvent

I have this method in my custom view which extends FrameLayout: @Override public boolean dispatchTouchEvent(MotionEvent ev) { int currentItem = vp.getCurrentItem(); if ...
3
votes
1answer
51 views

Are Fragments and Fragment Activities inherently faster than Activities?

Are Fragments and Fragment Activities inherently faster than Activities? If I don't need to load my activity in fragments, should I be using FragmentActivities and Fragments over Activities? Reason ...
0
votes
1answer
26 views

Unable to display all the buttons in TableLayout

I am generating buttons onto the screen programatically This is my code TableLayout MainLayout = new TableLayout(this); MainLayout.setLayoutParams(new ...
-1
votes
2answers
53 views

addView() method throwing Nullpointer Exception

I am trying to instantiate a row of Buttons Programatically using Table Layout public class MainActivity extends Activity { /** Called when the activity is first created. */ private final int ...
0
votes
3answers
68 views

how to copy a text to the Clipboard in android [duplicate]

I want to copy some text in temprory memory : TextView tv = (int)findViewById(R.id.txt); String str = tv.getText().toString(); now how an I copy str in clipboard ???
0
votes
0answers
32 views

Android Screen with Master Detail Flow, and news feeds

I was making an aplication for android, but I got a barrier. I need to make a screen, but i don't know how can I make it, I'm using master/detail flow and inside a menu item I want to show news feeds ...
0
votes
0answers
24 views

Retain the view on fragment tab change

I have a tabbed application, say 2 tabs. It was initially developed using ActivityGroup. However, having realized that multi-panes are not supported in ActivityGroup, I decided to use fragments. ...
0
votes
1answer
32 views

how to add clipboard option to action_send intent

Somehow I've seen an application that can add Clipboard option to share options. Something like this screenshot How can I do that? I tried to add extra intent, but the additional intent didn't ...
0
votes
1answer
43 views

Dismiss or remove System Navigation Bar

I want to dismiss bottom Navigation bar for one particular screen. I tried using setSystemUiVisibility(HorizontalScrollView.SYSTEM_UI_FLAG_HIDE_NAVIGATION); I have put this in Onscroll of my ...
1
vote
3answers
52 views

Android Imageview fill the screen width

Here my layout file: <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" ...
0
votes
3answers
49 views

Is there a fast way to initialize multiple buttons numbered 1-10 using for loop? (Android Application)

I have an init method that finds each button using findViewById(R.id.pin1) and then sets an onclick method that has the method write to a bluetooth output stream. Button myButton = (Button) ...
2
votes
2answers
89 views

Strange behavior of inflated buttons when changing one's color

I am trying to implement a dynamic button inflation for my Android application, based on an input specified by the user in real time. When clicked, button changes its color from blue to red. The code ...
0
votes
0answers
26 views

How to position text in custom view using onDraw method

I am making a subclass of View that will be used in a ListView My problem is that I don't know how to position the text inside the component so it will line up with other elements in same list row. ...
0
votes
0answers
19 views

How to determine if a canvas is clicked

I'm working on a new drawing app. I want to be able to select each Canvas separately upon click (I have a stack of Views that overlap each others). So each view is as big as my ViewGroup. When I click ...
1
vote
1answer
76 views

Android Activity not starting in onTouch function

I want to start an activity in the onTouch function but it is just showing me a blank screen. I have tested this activity and it runs when started from the main activity. Here i want to start this ...
1
vote
2answers
50 views

Class for reusable layout android

I have a reusable layout called title <?xml version="1.0" encoding="utf-8"?> <TextView android:id="@+id/title_text" android:layout_width="wrap_content" ...
0
votes
0answers
35 views

How to find the text in textviews while gesturing on screen

Hi I need to get the text in textview while gesturing on the screen . This is my xml code..... <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
0answers
25 views

Image only action bar for specific view

Is there a way to make an action with no buttons, just a centered image for 1 view, but a different one for all other views? The example I am looking at is the path app. Notice how the image on the ...
1
vote
0answers
41 views

The bottom view is getting blocked by the top view

I have a really annoying problem with fitting two custom views to work together. I'm trying to display these two views in an android activity, but one of them takes the whole viewable space of the ...
0
votes
0answers
30 views

Zoom out on a small view with ScaleGestureDetector

I have a custom view with a ScaleGestureDetector, on which I want to use pinch to zoom action. It works ok when the view is rather large, but when it is small only zomm in works properly (I place two ...
0
votes
2answers
43 views

NullPointerException at TextView.checkForRelayout() while setText()

I am trying to implement ViewHolder pattern to improve perfomance while drawing on canvas over the map. I need to create some labels for my markers. This method is called while data processing in ...
-2
votes
3answers
74 views

how to create an array of id image from assets have many folders

I have many folders and images in assets, example: "folder1/img1.jpg, img2.jpg...img15.jpg; folder2/img1.jpg, img2.jpg...img20.jpg;.....". I have a ListView with name of all folders in assets with ...
0
votes
1answer
18 views

Clear the previous selected View Background and change the background of newly selected View in Onclick - Android

I want to change the background view when it's pressed (its working). My problem is, If i press the other view (not the same one) in the list, i want to set my background to Black of the newly ...
-1
votes
1answer
27 views

Create a pattern along the bottom edge of a view

I would like to have a pattern along the edge of a view. For this particular case, I would like it to be a jagged edge (like tearing parchment paper or tinfoil out of a roll). I would prefer a more ...
4
votes
1answer
43 views

Stretch/Scale a Specific Region of View/Bitmap

I am trying to apply a ScaleAnimation to a View, but I have a somewhat nontraditional requirement: I would like to scale only a very specific region of the View. Using the existing ScaleAnimation ...
0
votes
1answer
50 views

How to perform a haptic feedback on dialog?

I want to perform a haptic feedback when the user press an item on the dialog. I can't use the method of view: view.performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY); because I don't hold ...
0
votes
0answers
44 views

Set TouchListener to root view without overriding touchevents of child view?

My Activity consists of one Framelayout (named fragment_content) where I replace/add different Fragments. Now I set a TouchListener to this fragment_content to implement a "Two-Finger-Swipe" (-> just ...
0
votes
0answers
37 views

View does not fit the canvas on canvas scale

When I'm trying to scale my canvas to a draw SCALED view, my view is actually scaled, but view is getting clipped. (probably because of its layout parameters?) public void onDraw(Canvas canvas) { ...

1 2 3 4 5 18