view tag

215 questions


1 answers
109 views
0
I want to show you an empty view when the list view is empty.

<RelativeLayout android:id=@+id/LinearLayoutAR android:layout_height=fill_parent android:layout_width=fill_parent> <ListView android:id=@+id/ARListView android:layout_width=fill_parent andr...


1 answers
72 views
0
Adding Shadow Effects to Android TextView

I want to add a shadow effect to TextView, what should I do?

2 years ago

1 answers
133 views
0
To output characters in a text view in a right alignment

I'd like to right-sort the letters in Android TextViewIn the Gravity property,android:gravity=rightI gave it to you like this, but it doesn't work. What did you do wrong?


1 answers
132 views
0
I got to know about the concept of View Holder in ListView, so please check if I understand correctly!

While searching for keywords related to ListView, I found out about ViewHolder, so I'm going to read related blogs and write down what I understood, so please check if it's right. I would appreciate i...

2 years ago

1 answers
140 views
0
I have a question for Android listview

@Override public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = inf.inflate(R.layout.li...

2 years ago

1 answers
87 views
0
The cell height of the ListView cannot be adjusted.

The cell height of the ListView cannot be adjusted. Give android:layout_height=70dp and it should come out at the height of the cell 70dp It's coming out too big. I've tried minheight, shortened it, a...


3 answers
94 views
0
I implemented a listview in one of the fragments. How do I make another activity appear when I click?(Beginner)

I implemented a listview in one of the fragments. How do I code to make another activity appear when I click? I'm a beginner. Please help me.listview.setOnItemClickListener(new AdapterView.OnItemClick...

2 years ago

1 answers
69 views
0
The image file is not accessible from the Android Web view.

I'm making a simple website and an Android application.After accessing the website through Android webview, I need to register the photo.When I access the website with a computer browser, the file win...

2 years ago

1 answers
56 views
0
[Objective-C] This is an xib question for creating iOS Custom View.

CustomView.hCustomView.mCustom View.xib.You have created a view that you want to float in xib.On the xib screen The first question I'd like to ask here is Placeholders' File's Onwer or View, which cla...

2 years ago

1 answers
58 views
0
When I try to load url from iOS webview, the page does not load with the message App Transport Security has blocked...

let url = NSURL (string: http://google.com);let requestObj = NSURLRequest(URL: url!);myWebView.loadRequest(requestObj);Loading url with App Transport Security has blocked a cleartext HTTP (http://) re...

2 years ago
« - 10 - »

© 2024 OneMinuteCode. All rights reserved.